]> tinc-vpn.org Git - tinc/blobdiff - src/info.c
Fix the scripts test.
[tinc] / src / info.c
index 562b5ff277afa7d79fc69ffe2670f6bfdcc9500d..758c0d1f4515533684fdb78d4dcf4f040e793546 100644 (file)
 #include "xalloc.h"
 
 void logger(int level, int priority, const char *format, ...) {
+       (void)level;
+       (void)priority;
        va_list ap;
+
        va_start(ap, format);
        vfprintf(stderr, format, ap);
        va_end(ap);
+
        fputc('\n', stderr);
 }