summaryrefslogtreecommitdiffstats
path: root/log.c
diff options
context:
space:
mode:
authornicm <nicm>2015-11-18 14:27:44 +0000
committernicm <nicm>2015-11-18 14:27:44 +0000
commit577c0e3e5a79e9f1f860487bc3f411d26758f026 (patch)
tree9413b6a93eee1e053b0b5fa6258c78db0abb0819 /log.c
parent5a5b950e8b86606edea8f61c40bf8af28ab4f08b (diff)
Use __unused rather than rolling our own.
Diffstat (limited to 'log.c')
-rw-r--r--log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/log.c b/log.c
index cf65c9e3..6c7be8b2 100644
--- a/log.c
+++ b/log.c
@@ -33,7 +33,7 @@ void log_vwrite(const char *, va_list);
/* Log callback for libevent. */
void
-log_event_cb(unused int severity, const char *msg)
+log_event_cb(__unused int severity, const char *msg)
{
log_debug("%s", msg);
}