summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-fddi.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-07-30 01:01:02 +0000
committerJörg Mayer <jmayer@loplof.de>2005-07-30 01:01:02 +0000
commit5602f5bb833647428967edbc5b1e99bf865646f0 (patch)
treeed2fe5de1d2a6b127f90d567fa0f4d98d5f4717d /epan/dissectors/packet-fddi.c
parent29060b1082fcf7afa4652c78df48c70e3cda4d8f (diff)
downloadwireshark-5602f5bb833647428967edbc5b1e99bf865646f0.tar.gz
Make some funtions static. More char -> const char warning fixes
svn path=/trunk/; revision=15146
Diffstat (limited to 'epan/dissectors/packet-fddi.c')
-rw-r--r--epan/dissectors/packet-fddi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-fddi.c b/epan/dissectors/packet-fddi.c
index 9eb1de0664..31ae210826 100644
--- a/epan/dissectors/packet-fddi.c
+++ b/epan/dissectors/packet-fddi.c
@@ -187,7 +187,7 @@ capture_fddi(const guchar *pd, int len, packet_counts *ld)
} /* capture_fddi */
-static gchar *
+static const gchar *
fddifc_to_str(int fc)
{
static gchar strbuf[128+1];
@@ -265,7 +265,7 @@ dissect_fddi(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
{
proto_tree *fh_tree = NULL;
proto_item *ti;
- gchar *fc_str;
+ const gchar *fc_str;
proto_tree *fc_tree;
static guchar src[6], dst[6];
guchar src_swapped[6], dst_swapped[6];