[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd2] 05/12: perf_replies: muted compiler warning
From: |
Admin |
Subject: |
[libmicrohttpd2] 05/12: perf_replies: muted compiler warning |
Date: |
Fri, 06 Jun 2025 16:01:13 +0200 |
This is an automated email from the git hooks/post-receive script.
karlson2k pushed a commit to branch master
in repository libmicrohttpd2.
commit 827e1786d20879f49d75bc8f19d2f9c4df653bce
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
AuthorDate: Wed Jun 4 02:23:57 2025 +0200
perf_replies: muted compiler warning
---
src/tools/perf_replies.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/tools/perf_replies.c b/src/tools/perf_replies.c
index 2bcbb2a..6c713b3 100644
--- a/src/tools/perf_replies.c
+++ b/src/tools/perf_replies.c
@@ -1878,7 +1878,9 @@ run_mhd (void)
if (1)
{
char buf[10];
- (void) fgets (buf, sizeof(buf), stdin);
+ const char *get_ret;
+ get_ret = fgets (buf, sizeof(buf), stdin);
+ (void) get_ret; /* Mute compiler warning */
}
MHD_daemon_destroy (d);
return 0;
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [libmicrohttpd2] branch master updated (2e6777f -> cdd4c1f), Admin, 2025/06/06
- [libmicrohttpd2] 03/12: mhd_response_check_frozen_freeze(): fixed assert, Admin, 2025/06/06
- [libmicrohttpd2] 01/12: Added missing includes for "mhd_assert.h", sorted some includes, Admin, 2025/06/06
- [libmicrohttpd2] 04/12: Improved error reporting for the listen socket creation, Admin, 2025/06/06
- [libmicrohttpd2] 06/12: mhd_stream_finish_req_serving(): minor simplification, Admin, 2025/06/06
- [libmicrohttpd2] 05/12: perf_replies: muted compiler warning,
Admin <=
- [libmicrohttpd2] 02/12: Unified debug macro checks, Admin, 2025/06/06
- [libmicrohttpd2] 09/12: Added detection and used "externally_visible" function attribute, Admin, 2025/06/06
- [libmicrohttpd2] 07/12: mhd_atomic_counter: fixed formatting, fixed single thread version build, Admin, 2025/06/06
- [libmicrohttpd2] 08/12: configure: improved test for alignof() detection, Admin, 2025/06/06
- [libmicrohttpd2] 10/12: Implemented and used counters based on atomic variables, Admin, 2025/06/06
- [libmicrohttpd2] 12/12: get_all_net_updates_by_epoll(): reduced the size of the data passed to the kernel, Admin, 2025/06/06
- [libmicrohttpd2] 11/12: Made zeroing of memory pool optional, other memory pool improvements, Admin, 2025/06/06