Mark last parameter of log_to_stdout(...) as intentionally unused

This commit is contained in:
practicalswift 2018-02-02 07:02:57 +01:00 committed by Christian Decker
parent 9b8fe618f6
commit 98372e4c0a

View File

@ -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);
}