Fix some unused-argument warnings

This commit is contained in:
Nick Mathewson 2015-01-30 14:47:56 -05:00
parent bc9ade055e
commit 097286e476
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}