summaryrefslogtreecommitdiff
path: root/main/stdtime
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2009-02-25 19:49:46 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2009-02-25 19:49:46 +0000
commitbaf144c6559a611f5541f6b26d4287b7055952fd (patch)
tree1375817caaa9b632e364f63cbba5a7c3c56a144d /main/stdtime
parent4ac2fd4cdef4cc489ea7bf5e2ae3b923cc50e74b (diff)
Picky, picky buildbots
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@178607 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/stdtime')
-rw-r--r--main/stdtime/localtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/stdtime/localtime.c b/main/stdtime/localtime.c
index e247a4de0..10bc1eff6 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) {