From 26d46a522976744c7390a0e05d832662bb72dea4 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Tue, 9 Feb 2021 18:54:08 +0100 Subject: [PATCH] fix --- sink/logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sink/logging.c b/sink/logging.c index 57ddc67..2563b09 100644 --- a/sink/logging.c +++ b/sink/logging.c @@ -10,7 +10,7 @@ void logmsg(int prio, const char* format, ...) { // openlog("counter", 0, LOG_LOCAL0); va_start(vl, format); //vsyslog(prio, format, vl); - vprintf(prio, format, vl); + vprintf(format, vl); va_end(vl); // closelog(); }