summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2024-08-25 07:04:06 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2024-08-25 07:04:06 +0000
commit7dfe58474b32e8e0573c93810837ed1ba1880ddb (patch)
treea72fd6cd00c45884a8ad99843630374e09b0cced /sbin
parent0ec719088a7af50efffb0897f0d1ab283b2ff080 (diff)
sin6_to_str and i2s take a single argument.
Pointed out by tb
Diffstat (limited to 'sbin')
-rw-r--r--sbin/slaacd/slaacd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/slaacd/slaacd.h b/sbin/slaacd/slaacd.h
index 9f7ba45749d..515843ef59e 100644
--- a/sbin/slaacd/slaacd.h
+++ b/sbin/slaacd/slaacd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: slaacd.h,v 1.40 2024/08/24 16:34:23 florian Exp $ */
+/* $OpenBSD: slaacd.h,v 1.41 2024/08/25 07:04:05 florian Exp $ */
/*
* Copyright (c) 2017 Florian Obser <florian@openbsd.org>
@@ -207,6 +207,6 @@ int imsg_forward_event(struct imsgev *, struct imsg *);
const char *sin6_to_str(struct sockaddr_in6 *);
const char *i2s(uint32_t);
#else
-#define sin6_to_str(x...) ""
-#define i2s(x...) ""
+#define sin6_to_str(x) ""
+#define i2s(x) ""
#endif /* SMALL */