aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet_info.h
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-23 11:41:25 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-23 11:41:25 +0000
commit23ec4b07a3224f817388301f64a3bea1066d828b (patch)
tree88cde02c2a8b79acb9a58e94d44b2cc686e12e9e /epan/packet_info.h
parent8e1c6eea8800b9c6b9a52a7ee90a897fb6cda442 (diff)
More 'char*' -> 'const char*' changes to fix warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15015 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/packet_info.h')
-rw-r--r--epan/packet_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/packet_info.h b/epan/packet_info.h
index bca15bd917..185ffcdb11 100644
--- a/epan/packet_info.h
+++ b/epan/packet_info.h
@@ -60,7 +60,7 @@ typedef struct _packet_info {
guint32 ipxptype; /* IPX packet type, if this is an IPX packet */
circuit_type ctype; /* type of circuit, for protocols with a VC identifier */
guint32 circuit_id; /* circuit ID, for protocols with a VC identifier */
- char *noreassembly_reason; /* reason why reassembly wasn't done, if any */
+ const char *noreassembly_reason; /* reason why reassembly wasn't done, if any */
gboolean fragmented; /* TRUE if the protocol is only a fragment */
gboolean in_error_pkt; /* TRUE if we're inside an {ICMP,CLNP,...} error packet */
port_type ptype; /* type of the following two port numbers */