aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2007-02-19 15:30:06 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2007-02-19 15:30:06 +0000
commit23a903af92c1734862b3b9567bb08624dc99d498 (patch)
tree1781685c937b9a0ad7b829b5c8d37ec63244cc9f /tshark.c
parent8437a368c583fdf2f9c2427fa514c05ebc214698 (diff)
Squelch a few unused parameter warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20863 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tshark.c b/tshark.c
index 8ce46677fb..aba9157239 100644
--- a/tshark.c
+++ b/tshark.c
@@ -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();