diff options
author | Jeff Morriss <jeff.morriss@ulticom.com> | 2007-02-19 15:30:06 +0000 |
---|---|---|
committer | Jeff Morriss <jeff.morriss@ulticom.com> | 2007-02-19 15:30:06 +0000 |
commit | 0787b688cce65aa1e7c3bf1fcd0ee4886328f8f1 (patch) | |
tree | 1781685c937b9a0ad7b829b5c8d37ec63244cc9f /tshark.c | |
parent | 376124960d6b77b65b6c40c71ae62f3e77440f62 (diff) | |
download | wireshark-0787b688cce65aa1e7c3bf1fcd0ee4886328f8f1.tar.gz wireshark-0787b688cce65aa1e7c3bf1fcd0ee4886328f8f1.tar.bz2 wireshark-0787b688cce65aa1e7c3bf1fcd0ee4886328f8f1.zip |
Squelch a few unused parameter warnings.
svn path=/trunk/; revision=20863
Diffstat (limited to 'tshark.c')
-rw-r--r-- | tshark.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3035,7 +3035,7 @@ cmdarg_err_cont(const char *fmt, ...) /** Report a new capture file having been opened. */ void -report_new_capture_file(const char *filename) +report_new_capture_file(const char *filename _U_) { /* shouldn't happen */ g_assert_not_reached(); @@ -3043,7 +3043,7 @@ report_new_capture_file(const char *filename) /** Report a number of new packets captured. */ void -report_packet_count(int packet_count) +report_packet_count(int packet_count _U_) { /* shouldn't happen */ g_assert_not_reached(); @@ -3051,7 +3051,7 @@ report_packet_count(int packet_count) /** Report the packet drops once the capture finishes. */ void -report_packet_drops(int drops) +report_packet_drops(int drops _U_) { /* shouldn't happen */ g_assert_not_reached(); |