From d2f9be56a58721f335230074eb864fe1ec45df84 Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Tue, 13 Jul 2010 08:02:02 +0000 Subject: [PATCH] portability lint git-svn-id: file:///svn/unbound/trunk@2193 be551aaa-1e26-0410-a405-d3ace91eadb9 --- util/tube.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/tube.c b/util/tube.c index a7a749fd2..2fad1cafc 100644 --- a/util/tube.c +++ b/util/tube.c @@ -401,7 +401,7 @@ pollit(int fd, struct timeval* t) return 0; } errno = 0; - return FD_ISSET(fd, &r); + return (int)(FD_ISSET(fd, &r)); } int tube_poll(struct tube* tube) -- 2.47.2