diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-05-18 15:57:21 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-05-18 15:57:21 -0400 |
commit | d5e4a6343694574cebc9f9bd7ea83a168bdad3aa (patch) | |
tree | 7c574d67801a8b18290d1c2e251c16adcc365937 /src/test/test_hs.c | |
parent | 2308f917f99384640c5b0d1ddc9f2a3dffc68e5a (diff) | |
download | tor-d5e4a6343694574cebc9f9bd7ea83a168bdad3aa.tar.gz tor-d5e4a6343694574cebc9f9bd7ea83a168bdad3aa.zip |
Fix some compilation warnings
Diffstat (limited to 'src/test/test_hs.c')
-rw-r--r-- | src/test/test_hs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/test_hs.c b/src/test/test_hs.c index a166f2c2c1..dd49cd3e35 100644 --- a/src/test/test_hs.c +++ b/src/test/test_hs.c @@ -310,6 +310,8 @@ test_hs_rend_data(void *arg) char client_cookie[REND_DESC_COOKIE_LEN]; time_t now = time(NULL); + (void)arg; + base32_decode(desc_id, sizeof(desc_id), STR_DESC_ID_BASE32, REND_DESC_ID_V2_LEN_BASE32); memset(client_cookie, 'e', sizeof(client_cookie)); |