[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [libmicrohttpd] branch master updated: fix compiler warning
From: |
gnunet |
Subject: |
[GNUnet-SVN] [libmicrohttpd] branch master updated: fix compiler warnings |
Date: |
Sun, 25 Aug 2019 11:24:49 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository libmicrohttpd.
The following commit(s) were added to refs/heads/master by this push:
new 91530f21 fix compiler warnings
91530f21 is described below
commit 91530f21e982350b98d9f6aa17379ad8af9f3158
Author: Christian Grothoff <address@hidden>
AuthorDate: Sun Aug 25 11:22:52 2019 +0200
fix compiler warnings
---
src/examples/suspend_resume_epoll.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/examples/suspend_resume_epoll.c
b/src/examples/suspend_resume_epoll.c
index 903dcd81..3e0be24c 100644
--- a/src/examples/suspend_resume_epoll.c
+++ b/src/examples/suspend_resume_epoll.c
@@ -55,7 +55,9 @@ ahc_echo (void *cls,
struct Request* req;
struct itimerspec ts;
+ (void) cls;
(void) url; /* Unused. Silence compiler warning. */
+ (void) method;
(void) version; /* Unused. Silence compiler warning. */
(void) upload_data; /* Unused. Silence compiler warning. */
(void) upload_data_size; /* Unused. Silence compiler warning. */
@@ -122,6 +124,9 @@ connection_done (void *cls,
{
struct Request *req = *con_cls;
+ (void) cls;
+ (void) connection;
+ (void) toe;
if (-1 != req->timerfd)
if (0 != close (req->timerfd))
abort ();
--
To stop receiving notification emails like this one, please contact
address@hidden.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [libmicrohttpd] branch master updated: fix compiler warnings,
gnunet <=