From: florian Date: Sun, 25 Aug 2024 07:04:05 +0000 (+0000) Subject: sin6_to_str and i2s take a single argument. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=5bd09d2d82234e0a150749fe6d109d6b0d03a38f;p=openbsd sin6_to_str and i2s take a single argument. Pointed out by tb --- 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 @@ -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 */