summaryrefslogtreecommitdiff
path: root/src/test/test_dir.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-09-12 21:09:18 -0400
committerNick Mathewson <nickm@torproject.org>2017-09-12 21:32:42 -0400
commit4ff170d7b1cbe4074cb85271b82a8963eccc8286 (patch)
tree459640c64a49ee1342338647cd67570cac605516 /src/test/test_dir.c
parent491b6de1684e519d1fec870a5b46a4bb540cbc13 (diff)
downloadtor-4ff170d7b1cbe4074cb85271b82a8963eccc8286.tar.gz
tor-4ff170d7b1cbe4074cb85271b82a8963eccc8286.zip
Fix warnings about passing uninitialized buffers into functions
Most of these buffers were never actually inspected, but it's still bad style.
Diffstat (limited to 'src/test/test_dir.c')
-rw-r--r--src/test/test_dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_dir.c b/src/test/test_dir.c
index 896e16ce05..3d1fb00dba 100644
--- a/src/test/test_dir.c
+++ b/src/test/test_dir.c
@@ -3370,7 +3370,7 @@ mock_get_options(void)
static void
reset_routerstatus(routerstatus_t *rs,
const char *hex_identity_digest,
- int32_t ipv4_addr)
+ uint32_t ipv4_addr)
{
memset(rs, 0, sizeof(routerstatus_t));
base16_decode(rs->identity_digest, sizeof(rs->identity_digest),