From: Nick Mathewson Date: Fri, 30 Jan 2015 19:47:56 +0000 (-0500) Subject: Fix some unused-argument warnings X-Git-Tag: tor-0.2.6.3-alpha~95 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=097286e47665a32e54249f809c23e190be9d57e8;p=thirdparty%2Ftor.git Fix some unused-argument warnings --- diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 28d922ab2c..6ae569cd8f 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -3503,12 +3503,16 @@ set_unix_port(edge_connection_t *conn, rend_service_port_config_t *p) static int set_unix_port(edge_connection_t *conn, rend_service_port_config_t *p) { + (void) conn; + (void) p; return -ENOSYS; } static int add_unix_port(smartlist_t *ports, rend_service_port_config_t *p) { + (void) ports; + (void) p; return -ENOSYS; }