diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-05-19 15:50:12 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-05-19 15:50:12 -0400 |
commit | 19615bce64cd381a925bc3910120ac39ca918e7c (patch) | |
tree | 119e084ea2ab5634e621db5f9a6cf2ab86bfb221 | |
parent | 8cb08f716dea9a62f302cf1f75d487a7a5793217 (diff) | |
download | tor-19615bce64cd381a925bc3910120ac39ca918e7c.tar.gz tor-19615bce64cd381a925bc3910120ac39ca918e7c.zip |
mingw fix: avoid "unused var" warning.
-rw-r--r-- | src/test/test_switch_id.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/test_switch_id.c b/src/test/test_switch_id.c index 44e02e87b3..53de793fe8 100644 --- a/src/test/test_switch_id.c +++ b/src/test/test_switch_id.c @@ -79,6 +79,7 @@ main(int argc, char **argv) #if defined(_WIN32) (void) argc; (void) argv; + (void) which_test; fprintf(stderr, "This test is not supported on your OS.\n"); return 77; |