[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd] 01/02: Muted possible compiler warnings
From: |
gnunet |
Subject: |
[libmicrohttpd] 01/02: Muted possible compiler warnings |
Date: |
Wed, 21 Feb 2024 14:36:46 +0100 |
This is an automated email from the git hooks/post-receive script.
karlson2k pushed a commit to branch master
in repository libmicrohttpd.
commit efe16e4891fb38c17fcc3726a3e3a02d008f2af2
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Wed Feb 21 18:34:52 2024 +0500
Muted possible compiler warnings
---
src/microhttpd/daemon.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index c83d4e5b..b3563c1a 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -7049,10 +7049,10 @@ parse_options_va (struct MHD_Daemon *daemon,
"printed by the standard MHD logger.\n"));
#else
- va_arg (ap,
- VfprintfFunctionPointerType);
- va_arg (ap,
- void *);
+ (void) va_arg (ap,
+ VfprintfFunctionPointerType);
+ (void) va_arg (ap,
+ void *);
#endif
break;
#if defined(MHD_USE_POSIX_THREADS) || defined(MHD_USE_W32_THREADS)
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.