summary refs log tree commit diff
diff options
context:
space:
mode:
-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;
 };