[asterisk-commits] tilghman: trunk r178607 - /trunk/main/stdtime/localtime.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Feb 25 13:49:46 CST 2009


Author: tilghman
Date: Wed Feb 25 13:49:46 2009
New Revision: 178607

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=178607
Log:
Picky, picky buildbots

Modified:
    trunk/main/stdtime/localtime.c

Modified: trunk/main/stdtime/localtime.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/main/stdtime/localtime.c?view=diff&rev=178607&r1=178606&r2=178607
==============================================================================
--- trunk/main/stdtime/localtime.c (original)
+++ trunk/main/stdtime/localtime.c Wed Feb 25 13:49:46 2009
@@ -256,7 +256,7 @@
 		/* This read should block, most of the time. */
 		if ((res = read(inotify_fd, &buf, sizeof(buf))) < sizeof(buf.iev) && res > 0) {
 			/* This should never happen */
-			ast_log(LOG_ERROR, "Inotify read less than a full event (%d < %d)?!!\n", res, sizeof(buf.iev));
+			ast_log(LOG_ERROR, "Inotify read less than a full event (%zd < %zd)?!!\n", res, sizeof(buf.iev));
 			break;
 		} else if (res < 0) {
 			if (errno == EINTR || errno == EAGAIN) {




More information about the asterisk-commits mailing list