diff options
author | Werner Koch <[email protected]> | 2016-09-13 18:53:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-09-13 18:53:49 +0000 |
commit | 4a200146b602349eebb4eac2e102357748d7ba5b (patch) | |
tree | c548cee8f7144b70f0f510f1f673844afe85c342 /src/posix-util.c | |
parent | tests: Mark lots of unused vars and fix const mismatches. (diff) | |
download | gpgme-4a200146b602349eebb4eac2e102357748d7ba5b.tar.gz gpgme-4a200146b602349eebb4eac2e102357748d7ba5b.zip |
core: Mark unused function args.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'src/posix-util.c')
-rw-r--r-- | src/posix-util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/posix-util.c b/src/posix-util.c index 0fce5c29..889c6aa5 100644 --- a/src/posix-util.c +++ b/src/posix-util.c @@ -145,6 +145,8 @@ _gpgme_get_gpgconf_path (void) int _gpgme_get_conf_int (const char *key, int *value) { + (void)key; + (void)value; return 0; } |