mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 04:11:08 +00:00
Picky, picky buildbots
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@178607 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user