From 98372e4c0a6a897ebf3fb4bf50c6a71fde586161 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Fri, 2 Feb 2018 07:02:57 +0100 Subject: [PATCH] Mark last parameter of log_to_stdout(...) as intentionally unused --- lightningd/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/log.c b/lightningd/log.c index 50657c2cc..21b2e1e4e 100644 --- a/lightningd/log.c +++ b/lightningd/log.c @@ -72,7 +72,7 @@ static void log_to_stdout(const char *prefix, enum log_level level, bool continued, const struct timeabs *time, - const char *str, void *arg) + const char *str, void *unused UNUSED) { log_to_file(prefix, level, continued, time, str, stdout); }