diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-01-11 11:04:03 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-01-11 11:04:03 +0000 |
commit | e8297af92b38b35d2aa35dd99f54da0519515563 (patch) | |
tree | a1ed1a87a5e74f621b7020a7f98e31320875bee7 /tethereal.c | |
parent | 4b6951cd8921b257053f69588a69980222970fe7 (diff) | |
download | wireshark-e8297af92b38b35d2aa35dd99f54da0519515563.tar.gz wireshark-e8297af92b38b35d2aa35dd99f54da0519515563.tar.bz2 wireshark-e8297af92b38b35d2aa35dd99f54da0519515563.zip |
Declare "capture()" appropriately.
svn path=/trunk/; revision=4527
Diffstat (limited to 'tethereal.c')
-rw-r--r-- | tethereal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tethereal.c b/tethereal.c index fe8fc2587a..b466fb60cc 100644 --- a/tethereal.c +++ b/tethereal.c @@ -1,6 +1,6 @@ /* tethereal.c * - * $Id: tethereal.c,v 1.115 2002/01/10 09:51:22 guy Exp $ + * $Id: tethereal.c,v 1.116 2002/01/11 11:04:03 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -132,7 +132,7 @@ typedef struct _loop_data { static loop_data ld; -static int capture(int, int); +static int capture(volatile int, int); static void capture_pcap_cb(u_char *, const struct pcap_pkthdr *, const u_char *); static void capture_cleanup(int); |