aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sscop.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-02 08:30:33 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-02 08:30:33 +0000
commit0914d3ae860d6256e9d5d4a58463f3cbdb83e90d (patch)
treea384a8ea6c347a0d00c08a3a73d823be204a9fb6 /epan/dissectors/packet-sscop.c
parenta8932e43fbc760f1d58fd7e3029aabb051140e3c (diff)
Last set of trivial fixes for "no previous declaration" warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15191 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-sscop.c')
-rw-r--r--epan/dissectors/packet-sscop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-sscop.c b/epan/dissectors/packet-sscop.c
index d0b50a19f0..108a02f979 100644
--- a/epan/dissectors/packet-sscop.c
+++ b/epan/dissectors/packet-sscop.c
@@ -168,7 +168,7 @@ static const value_string sscop_type_vals[] = {
#define SSCOP_SS_N_MR (reported_length - 8) /* lower 3 bytes thereof */
#define SSCOP_SS_N_R (reported_length - 4) /* lower 3 bytes thereof */
-extern void dissect_stat_list(proto_tree *tree, tvbuff_t *tvb,guint h) {
+static void dissect_stat_list(proto_tree *tree, tvbuff_t *tvb,guint h) {
gint n,i;
proto_item* pi;
@@ -341,7 +341,7 @@ dissect_sscop_and_payload(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, d
}
}
-extern void dissect_sscop(tvbuff_t* tvb, packet_info* pinfo,proto_tree* tree)
+static void dissect_sscop(tvbuff_t* tvb, packet_info* pinfo,proto_tree* tree)
{
dissect_sscop_and_payload(tvb,pinfo,tree,default_handle);
}