summaryrefslogtreecommitdiffstats
path: root/hunt
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2014-03-29 22:30:27 +0000
committerdholland <dholland@NetBSD.org>2014-03-29 22:30:27 +0000
commita842b4f76e1fc7c95cc913c3522363149b0dce4e (patch)
tree5c00aaa3341e37581368e9663d030cd4bd2bc796 /hunt
parent01c156137af771211dcc8c7bedbe4121c12f22b8 (diff)
downloadbsdgames-darwin-a842b4f76e1fc7c95cc913c3522363149b0dce4e.tar.gz
bsdgames-darwin-a842b4f76e1fc7c95cc913c3522363149b0dce4e.tar.zst
bsdgames-darwin-a842b4f76e1fc7c95cc913c3522363149b0dce4e.zip
Er oops, fix previous.
Diffstat (limited to 'hunt')
-rw-r--r--hunt/huntd/support.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hunt/huntd/support.c b/hunt/huntd/support.c
index a40ab162..e08b0fa6 100644
--- a/hunt/huntd/support.c
+++ b/hunt/huntd/support.c
@@ -1,4 +1,4 @@
-/* $NetBSD: support.c,v 1.1 2014/03/29 22:29:55 dholland Exp $ */
+/* $NetBSD: support.c,v 1.2 2014/03/29 22:30:27 dholland Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -36,7 +36,7 @@
#include "hunt.h"
-__RCSID("$NetBSD: support.c,v 1.1 2014/03/29 22:29:55 dholland Exp $");
+__RCSID("$NetBSD: support.c,v 1.2 2014/03/29 22:30:27 dholland Exp $");
void
complain(int level, const char *fmt, ...)
@@ -54,7 +54,7 @@ complain(int level, const char *fmt, ...)
syslog(level, "%s", buf);
#else
(void)level;
- vwarn("accept");
+ vwarn(fmt, ap);
#endif
va_end(ap);
}