From 1d2bd301d3b8f44903f56c3a8a91b9fa943abd40 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 27 Mar 2009 09:52:19 +0000 Subject: [PATCH] kill warnings --- tests/simple.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/simple.c b/tests/simple.c index d0e6b11..edcbf03 100644 --- a/tests/simple.c +++ b/tests/simple.c @@ -41,7 +41,7 @@ #include "libssh2.h" -int test_libssh2_base64_decode (LIBSSH2_SESSION *session) +static int test_libssh2_base64_decode (LIBSSH2_SESSION *session) { char *data; unsigned int datalen; @@ -70,6 +70,8 @@ int test_libssh2_base64_decode (LIBSSH2_SESSION *session) int main(int argc, char *argv[]) { LIBSSH2_SESSION *session; + (void)argv; + (void)argc; session = libssh2_session_init(); if (!session)