diff options
| author | Werner Koch <[email protected]> | 2016-05-24 11:02:14 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2016-05-24 11:04:29 +0000 |
| commit | f7426b73ce3176f2bd3ea02120be1c70d145542e (patch) | |
| tree | 666bfe0f267ef3b03228eb15f293639ab9a3984c | |
| parent | gpg, w32: Fix build regression. (diff) | |
| download | gnupg-f7426b73ce3176f2bd3ea02120be1c70d145542e.tar.gz gnupg-f7426b73ce3176f2bd3ea02120be1c70d145542e.zip | |
common,w32: Silence an unused arg warning message.
--
| -rw-r--r-- | common/sysutils.c | 2 |
1 files changed, 2 insertions, 0 deletions
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)); |
