From 572f8edb589499ae491f79cec4b6a98b59ed074e Mon Sep 17 00:00:00 2001 From: rubin Date: Fri, 22 May 2026 16:22:20 +0200 Subject: change from int to size_t in watch handle Signed-off-by: rubin --- fdwatcher.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fdwatcher.h') 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; }; -- cgit 1.4.1