diff options
author | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-12-19 12:33:34 +0100 |
---|---|---|
committer | Tim Rühsen <tim.ruehsen@gmx.de> | 2020-01-03 11:34:37 +0100 |
commit | 0fa5dc501dc018105ecae5cbadf7bc87af0987f8 (patch) | |
tree | bec93409965feece65acd3e9f41f4cf0262bb1d3 /tests | |
parent | 8592153f7620133b0695df8d7e4864cd70bad6f6 (diff) | |
download | gnutls-0fa5dc501dc018105ecae5cbadf7bc87af0987f8.tar.gz |
Fix 2x -Wunused-function in tests/
Signed-off-by: Tim Rühsen <tim.ruehsen@gmx.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ssl30-cipher-neg.c | 2 | ||||
-rw-r--r-- | tests/ssl30-server-kx-neg.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/ssl30-cipher-neg.c b/tests/ssl30-cipher-neg.c index a438f4b7ea..745be43e0c 100644 --- a/tests/ssl30-cipher-neg.c +++ b/tests/ssl30-cipher-neg.c @@ -118,6 +118,8 @@ test_case_st tests[] = { void doit(void) { + (void) try; + #ifdef ENABLE_SSL3 unsigned i; global_init(); diff --git a/tests/ssl30-server-kx-neg.c b/tests/ssl30-server-kx-neg.c index cdfc1e466c..357cf941ba 100644 --- a/tests/ssl30-server-kx-neg.c +++ b/tests/ssl30-server-kx-neg.c @@ -156,6 +156,8 @@ test_case_st tests[] = { void doit(void) { + (void) try; + #ifdef ENABLE_SSL3 unsigned i; global_init(); |