aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/profinet/packet-pn-dcp.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-02 05:39:45 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-02 05:39:45 +0000
commit4f693dfae2544995ef399785c91db910d973c700 (patch)
treec56f54bacaffb300a24291251c4f62c233b9f6d0 /plugins/profinet/packet-pn-dcp.c
parentb7cd5963539717be92f6132e19c5f74fd4303595 (diff)
Some warning fixes for "no previous declaration"
Remove svn:executable Add svn:eol-style native Add svn:keywords Id svn path=/trunk/; revision=15179
Diffstat (limited to 'plugins/profinet/packet-pn-dcp.c')
-rw-r--r--plugins/profinet/packet-pn-dcp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/profinet/packet-pn-dcp.c b/plugins/profinet/packet-pn-dcp.c
index 9c94be0f33..9fc5d39682 100644
--- a/plugins/profinet/packet-pn-dcp.c
+++ b/plugins/profinet/packet-pn-dcp.c
@@ -250,7 +250,7 @@ static const value_string pn_dcp_suboption_manuf[] = {
/* dissect an 8 bit unsigned integer */
-int
+static int
dissect_pn_uint8(tvbuff_t *tvb, gint offset, packet_info *pinfo _U_,
proto_tree *tree, int hfindex, guint8 *pdata)
{
@@ -266,7 +266,7 @@ dissect_pn_uint8(tvbuff_t *tvb, gint offset, packet_info *pinfo _U_,
}
/* dissect a 16 bit unsigned integer */
-int
+static int
dissect_pn_uint16(tvbuff_t *tvb, gint offset, packet_info *pinfo _U_,
proto_tree *tree, int hfindex, guint16 *pdata)
{
@@ -283,7 +283,7 @@ dissect_pn_uint16(tvbuff_t *tvb, gint offset, packet_info *pinfo _U_,
}
/* dissect a 32 bit unsigned integer */
-int
+static int
dissect_pn_uint32(tvbuff_t *tvb, gint offset, packet_info *pinfo _U_,
proto_tree *tree, int hfindex, guint32 *pdata)
{
@@ -300,7 +300,7 @@ dissect_pn_uint32(tvbuff_t *tvb, gint offset, packet_info *pinfo _U_,
}
/* dissect an IPv4 address */
-int
+static int
dissect_pn_ipv4(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
proto_tree *tree, int hfindex, guint32 *pdata)
{
@@ -317,7 +317,7 @@ dissect_pn_ipv4(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
}
/* dissect some padding data (with the given length) */
-int
+static int
dissect_pn_padding(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
proto_tree *tree, int length)
{