From 5a62408629fd36017de0fd9eec1d0989190a7c67 Mon Sep 17 00:00:00 2001 From: Paul Bakker Date: Tue, 18 Jan 2011 16:31:52 +0000 Subject: [PATCH] - Fixed compiler warnings --- tests/suites/test_suite_x509parse.function | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/suites/test_suite_x509parse.function b/tests/suites/test_suite_x509parse.function index fe9a73375..9a7a46019 100644 --- a/tests/suites/test_suite_x509parse.function +++ b/tests/suites/test_suite_x509parse.function @@ -4,11 +4,21 @@ BEGIN_HEADER int verify_none( void *data, x509_cert *crt, int certificate_depth, int preverify_ok ) { + ((void) data); + ((void) crt); + ((void) certificate_depth); + ((void) preverify_ok); + return 1; } int verify_all( void *data, x509_cert *crt, int certificate_depth, int preverify_ok ) { + ((void) data); + ((void) crt); + ((void) certificate_depth); + ((void) preverify_ok); + return 0; }