aboutsummaryrefslogtreecommitdiffstats
path: root/main/stdtime
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-25 19:49:46 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-25 19:49:46 +0000
commit88044f77470e2164e30cf02381b73cd4c7845423 (patch)
tree1375817caaa9b632e364f63cbba5a7c3c56a144d /main/stdtime
parent82a4dd2ed8d1efc9d6c68f158663beb96aeced65 (diff)
Picky, picky buildbots
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@178607 f38db490-d61c-443f-a65b-d21fe96a405b
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) {