From f7426b73ce3176f2bd3ea02120be1c70d145542e Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Tue, 24 May 2016 13:02:14 +0200 Subject: [PATCH] common,w32: Silence an unused arg warning message. -- --- common/sysutils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/sysutils.c b/common/sysutils.c index 18625d0ff..d82eb8e26 100644 --- a/common/sysutils.c +++ b/common/sysutils.c @@ -636,6 +636,8 @@ int gnupg_chmod (const char *name, const char *modestr) { #ifdef HAVE_W32_SYSTEM + (void)name; + (void)modestr; return 0; #else return chmod (name, modestr_to_mode (modestr));