From baf144c6559a611f5541f6b26d4287b7055952fd Mon Sep 17 00:00:00 2001 From: Tilghman Lesher <tilghman@meg.abyt.es> Date: Wed, 25 Feb 2009 19:49:46 +0000 Subject: [PATCH] Picky, picky buildbots git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@178607 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/stdtime/localtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/stdtime/localtime.c b/main/stdtime/localtime.c index e247a4de03..10bc1eff67 100644 --- a/main/stdtime/localtime.c +++ b/main/stdtime/localtime.c @@ -256,7 +256,7 @@ static void *inotify_daemon(void *data) /* 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) { -- GitLab