[dovecot-cvs] dovecot/src/lib ioloop-select.c,1.2,1.3

cras at procontrol.fi cras at procontrol.fi
Tue Nov 26 12:14:31 EET 2002


Update of /home/cvs/dovecot/src/lib
In directory danu:/tmp/cvs-serv25842/lib

Modified Files:
	ioloop-select.c 
Log Message:
Fixed a few compiling warnings about signedness.



Index: ioloop-select.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib/ioloop-select.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ioloop-select.c	22 Aug 2002 12:48:38 -0000	1.2
+++ ioloop-select.c	26 Nov 2002 10:14:28 -0000	1.3
@@ -73,7 +73,8 @@
 {
 	struct timeval tv;
 	IO io, next;
-	int ret, fd, condition, destroyed, t_id;
+        unsigned int t_id;
+	int ret, fd, condition, destroyed;
 
 	/* get the time left for next timeout task */
 	io_loop_get_wait_time(ioloop->timeouts, &tv, NULL);




More information about the dovecot-cvs mailing list