Browse Source

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

ppa-0.6.1
practicalswift 7 years ago
committed by Christian Decker
parent
commit
98372e4c0a
  1. 2
      lightningd/log.c

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

Loading…
Cancel
Save