diff options
author | Werner Koch <[email protected]> | 2008-10-20 13:53:23 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-10-20 13:53:23 +0000 |
commit | 0a5f7424660e404e5fd0361b9331d154acf01d6c (patch) | |
tree | b84fb5a994045e12eb326441d8c924094bd915cd /agent/t-protect.c | |
parent | Fix a bug in estream_snprintf. Found by a failed t-gettime under Windows. (diff) | |
download | gnupg-0a5f7424660e404e5fd0361b9331d154acf01d6c.tar.gz gnupg-0a5f7424660e404e5fd0361b9331d154acf01d6c.zip |
Marked all unused args on non-W32 platforms.
Diffstat (limited to 'agent/t-protect.c')
-rw-r--r-- | agent/t-protect.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/agent/t-protect.c b/agent/t-protect.c index aadbe6adc..0e29cafe2 100644 --- a/agent/t-protect.c +++ b/agent/t-protect.c @@ -294,6 +294,9 @@ test_agent_get_shadow_info (void) int main (int argc, char **argv) { + (void)argc; + (void)argv; + gcry_control (GCRYCTL_DISABLE_SECMEM); test_agent_protect (); |