diff mbox series

[14/15] daemon: mark unused parameters in non-posix fallbacks

Message ID 20240817082532.GN10287@coredump.intra.peff.net (mailing list archive)
State Accepted
Commit 0b1376d44866e6eae25523d8f1188495dab42ee8
Headers show
Series marking some more unused parameters | expand

Commit Message

Jeff King Aug. 17, 2024, 8:25 a.m. UTC
If NO_POSIX_GOODIES is set, we compile fallback versions of a few
functions. These don't do anything, so their parameters are unused, but
we must keep them to match the ones on the other side of the #ifdef.
Mark them to quiet -Wunused-parameter.

Signed-off-by: Jeff King <peff@peff.net>
---
 daemon.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/daemon.c b/daemon.c
index 17d331b2f3..428a445559 100644
--- a/daemon.c
+++ b/daemon.c
@@ -1175,13 +1175,13 @@  static int service_loop(struct socketlist *socklist)
 
 struct credentials;
 
-static void drop_privileges(struct credentials *cred)
+static void drop_privileges(struct credentials *cred UNUSED)
 {
 	/* nothing */
 }
 
-static struct credentials *prepare_credentials(const char *user_name,
-    const char *group_name)
+static struct credentials *prepare_credentials(const char *user_name UNUSED,
+					       const char *group_name UNUSED)
 {
 	die("--user not supported on this platform");
 }