From 083f8335a3c2499d64e64ccf28b553d3303c02ec Mon Sep 17 00:00:00 2001 From: jmayer Date: Tue, 2 Aug 2005 04:31:42 +0000 Subject: Fix more "no previous declaration" warnings git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15169 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/dissectors/packet-sip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epan/dissectors/packet-sip.c') diff --git a/epan/dissectors/packet-sip.c b/epan/dissectors/packet-sip.c index 0c89a19929..76fb97ca2d 100644 --- a/epan/dissectors/packet-sip.c +++ b/epan/dissectors/packet-sip.c @@ -488,7 +488,7 @@ typedef struct /* Hash table functions */ /* Equal keys */ -gint sip_equal(gconstpointer v, gconstpointer v2) +static gint sip_equal(gconstpointer v, gconstpointer v2) { const sip_hash_key* val1 = v; const sip_hash_key* val2 = v2; @@ -508,7 +508,7 @@ gint sip_equal(gconstpointer v, gconstpointer v2) /* Compute a hash value for a given key. */ /* Don't try to use addresses here, call-id should be almost unique. */ -guint sip_hash_func(gconstpointer v) +static guint sip_hash_func(gconstpointer v) { gint n; const sip_hash_key *key = v; -- cgit v1.2.3