[Pkg-gnupg-commit] [gpgme] 09/12: w32: Silence some warnings about unused parameters.

Daniel Kahn Gillmor dkg at fifthhorseman.net
Thu Sep 22 23:29:28 UTC 2016


This is an automated email from the git hooks/post-receive script.

dkg pushed a commit to branch cleanup-2016-09-22
in repository gpgme.

commit 583aafdd6870a7fb12a34d90993fd0f46928592c
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Sep 22 12:58:23 2016 +0200

    w32: Silence some warnings about unused parameters.
    
    * src/assuan-support.c (my_recvmsg, my_sendmsg, my_waitpid)
    (my_socketpair) [W32]: Mark unused parameters.
    
    Signed-off-by: Werner Koch <wk at gnupg.org>
---
 src/assuan-support.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/src/assuan-support.c b/src/assuan-support.c
index 2cfdc35..7fbd48a 100644
--- a/src/assuan-support.c
+++ b/src/assuan-support.c
@@ -97,6 +97,9 @@ my_recvmsg (assuan_context_t ctx, assuan_fd_t fd, assuan_msghdr_t msg,
 {
   (void)ctx;
 #ifdef HAVE_W32_SYSTEM
+  (void)fd;
+  (void)msg;
+  (void)flags;
   gpg_err_set_errno (ENOSYS);
   return -1;
 #else
@@ -112,6 +115,9 @@ my_sendmsg (assuan_context_t ctx, assuan_fd_t fd, const assuan_msghdr_t msg,
 {
   (void)ctx;
 #ifdef HAVE_W32_SYSTEM
+  (void)fd;
+  (void)msg;
+  (void)flags;
   gpg_err_set_errno (ENOSYS);
   return -1;
 #else
@@ -210,6 +216,9 @@ my_waitpid (assuan_context_t ctx, pid_t pid,
 {
   (void)ctx;
 #ifdef HAVE_W32_SYSTEM
+  (void)nowait;
+  (void)status;
+  (void)options;
   CloseHandle ((HANDLE) pid);
 #else
   /* We can't just release the PID, a waitpid is mandatory.  But
@@ -229,6 +238,11 @@ my_socketpair (assuan_context_t ctx, int namespace, int style,
 	       int protocol, assuan_fd_t filedes[2])
 {
 #ifdef HAVE_W32_SYSTEM
+  (void)ctx;
+  (void)namespace;
+  (void)style;
+  (void)protocol;
+  (void)filedes;
   gpg_err_set_errno (ENOSYS);
   return -1;
 #else

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gnupg/gpgme.git



More information about the Pkg-gnupg-commit mailing list