aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2007-02-19 15:30:06 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2007-02-19 15:30:06 +0000
commit0787b688cce65aa1e7c3bf1fcd0ee4886328f8f1 (patch)
tree1781685c937b9a0ad7b829b5c8d37ec63244cc9f /tshark.c
parent376124960d6b77b65b6c40c71ae62f3e77440f62 (diff)
Squelch a few unused parameter warnings.
svn path=/trunk/; revision=20863
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();