summary refs log tree commit diff
diff options
context:
space:
mode:
authorrubin <rubinowyblask@meow.li>2026-05-22 16:22:20 +0200
committerrubin <rubinowyblask@meow.li>2026-05-22 16:22:20 +0200
commit572f8edb589499ae491f79cec4b6a98b59ed074e (patch)
tree1bbf1b6a4c6238712bed2ed7e1e5bb982bac9620
parenta0030b55aec2c61e05527689129c038d72e423d2 (diff)
change from int to size_t in watch handle
Signed-off-by: rubin <rubinowyblask@meow.li>
-rw-r--r--fdwatcher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fdwatcher.h b/fdwatcher.h
index ce90198..20650f0 100644
--- a/fdwatcher.h
+++ b/fdwatcher.h
@@ -1,6 +1,6 @@
 struct FDWatchHandle {
-	int maxWatchedFds;
-	int watchedFdCount;
+	size_t maxWatchedFds;
+	size_t watchedFdCount;
 	struct pollfd *watchedFds;
 	void **arbitraryData;
 };