aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ipp.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-30 16:34:38 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-30 16:34:38 +0000
commitb33c6b9563efdc7fcced921888244d30bd0fb509 (patch)
tree9dfa68d0b17ff7a5b589a851e264a77b99ab2852 /epan/dissectors/packet-ipp.c
parente08d23a43941e5346c0daa29b361761e33c9215b (diff)
More char -> const char fixes
Declare some functions static git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15158 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ipp.c')
-rw-r--r--epan/dissectors/packet-ipp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ipp.c b/epan/dissectors/packet-ipp.c
index 88e72fe829..ace9126249 100644
--- a/epan/dissectors/packet-ipp.c
+++ b/epan/dissectors/packet-ipp.c
@@ -162,7 +162,7 @@ dissect_ipp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
int offset = 0;
gboolean is_request = (pinfo->destport == 631);
guint16 status_code;
- gchar *status_fmt;
+ const gchar *status_fmt;
if (check_col(pinfo->cinfo, COL_PROTOCOL))
col_set_str(pinfo->cinfo, COL_PROTOCOL, "IPP");