From 097286e47665a32e54249f809c23e190be9d57e8 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 30 Jan 2015 14:47:56 -0500 Subject: [PATCH] Fix some unused-argument warnings --- src/or/rendservice.c | 4 ++++ 1 file changed, 4 insertions(+) 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; }