From bab9ba960353e55086159daf8cb31f88365fbe4b Mon Sep 17 00:00:00 2001 From: Kano Date: Mon, 12 Aug 2013 08:58:20 +1000 Subject: [PATCH] use correct define for OSX in util.c --- util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util.c b/util.c index 2dc4ea40..247a4edf 100644 --- a/util.c +++ b/util.c @@ -1915,7 +1915,7 @@ void _cgsem_post(cgsem_t *cgsem, const char *file, const char *func, const int l ret = write(cgsem->pipefd[1], &buf, 1); if (unlikely(ret == 0)) - applog(LOG_WARNING, "Failed to write errno=%d" INFMTFFL, errno, file, func, line); + applog(LOG_WARNING, "Failed to write errno=%d" IN_FMT_FFL, errno, file, func, line); } void _cgsem_wait(cgsem_t *cgsem, const char *file, const char *func, const int line) @@ -1925,7 +1925,7 @@ void _cgsem_wait(cgsem_t *cgsem, const char *file, const char *func, const int l ret = read(cgsem->pipefd[0], &buf, 1); if (unlikely(ret == 0)) - applog(LOG_WARNING, "Failed to read errno=%d" INFMTFFL, errno, file, func, line); + applog(LOG_WARNING, "Failed to read errno=%d" IN_FMT_FFL, errno, file, func, line); } void _cgsem_destroy(cgsem_t *cgsem)