aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cip.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-10-11 19:00:55 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-10-11 19:00:55 +0000
commit2ef266cae8b121af821baeaa51f732401e6a3cf2 (patch)
treeec1f18668b7116e4c2bd0f70bb4ff559d123d718 /epan/dissectors/packet-cip.c
parent579f070e08efe3d1a7fec325f53d0d81244402ef (diff)
Define some fcns & vars as static;
Minor whitespace and comments cleanup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34477 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-cip.c')
-rw-r--r--epan/dissectors/packet-cip.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/epan/dissectors/packet-cip.c b/epan/dissectors/packet-cip.c
index 0262e0c8e2..e625038a8a 100644
--- a/epan/dissectors/packet-cip.c
+++ b/epan/dissectors/packet-cip.c
@@ -73,9 +73,11 @@ typedef struct cip_req_info {
void *pData;
} cip_req_info_t;
-dissector_handle_t cip_handle;
-dissector_handle_t cip_class_generic_handle,cip_class_cm_handle,cip_class_mr_handle;
-dissector_handle_t cip_class_cco_handle;
+static dissector_handle_t cip_handle;
+static dissector_handle_t cip_class_generic_handle;
+static dissector_handle_t cip_class_cm_handle;
+static dissector_handle_t cip_class_mr_handle;
+static dissector_handle_t cip_class_cco_handle;
/* Initialize the protocol and registered fields */
static int proto_cip = -1;