aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-11-08 14:53:59 -0800
committerGuy Harris <guy@alum.mit.edu>2017-11-08 14:53:59 -0800
commit525acd51de1716b2b06d84b9998fbfbf0a96de61 (patch)
tree83240f90d7432d3126a49f979b0d50536d77e689 /tests
parentb9a76e9551e3ad8edc9b463607dc8b0bd28cb73f (diff)
Unused variable on Windows is unused.
Diffstat (limited to 'tests')
-rw-r--r--tests/threadsignaltest.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/threadsignaltest.c b/tests/threadsignaltest.c
index 04b8e213..8ad51125 100644
--- a/tests/threadsignaltest.c
+++ b/tests/threadsignaltest.c
@@ -186,7 +186,9 @@ main(int argc, char **argv)
char ebuf[PCAP_ERRBUF_SIZE];
int status;
THREAD_HANDLE capture_thread;
+#ifndef _WIN32
void *retval;
+#endif
device = NULL;
if ((cp = strrchr(argv[0], '/')) != NULL)