diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-07-15 01:59:18 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-07-15 01:59:18 +0000 |
commit | c458f33ef1ec48357d008e44a3c03422ed1366ea (patch) | |
tree | e535f6f6d03ef5b98a64e3e8255c8eaf8f751fb1 | |
parent | 254355e6d3cb9ad72fd037f54ee4488fa12e7003 (diff) | |
download | tor-c458f33ef1ec48357d008e44a3c03422ed1366ea.tar tor-c458f33ef1ec48357d008e44a3c03422ed1366ea.tar.gz |
Fix warning
svn:r2046
-rw-r--r-- | src/or/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/test.c b/src/or/test.c index ef1e89c02..d92a45987 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -661,7 +661,7 @@ test_dir_format() routerinfo_t *rp1 = NULL, *rp2 = NULL; struct exit_policy_t ex1, ex2; routerlist_t *dir1 = NULL, *dir2 = NULL; - tor_version_t ver1, ver2; + tor_version_t ver1; test_assert( (pk1 = crypto_new_pk_env()) ); test_assert( (pk2 = crypto_new_pk_env()) ); |