aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dnp.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-07-26 08:01:16 +0000
committerJörg Mayer <jmayer@loplof.de>2005-07-26 08:01:16 +0000
commit7949c7f31cea19a34c70dae4f4288e188d9cf260 (patch)
tree0bdf411fd24930617ec62293a2c341905eaf7ad9 /epan/dissectors/packet-dnp.c
parent0e9e556e5acfca7cb947af4c8ca70e0bcf74f3e8 (diff)
char -> const char warning fixes
svn path=/trunk/; revision=15079
Diffstat (limited to 'epan/dissectors/packet-dnp.c')
-rw-r--r--epan/dissectors/packet-dnp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dnp.c b/epan/dissectors/packet-dnp.c
index d33d129f44..1e33594703 100644
--- a/epan/dissectors/packet-dnp.c
+++ b/epan/dissectors/packet-dnp.c
@@ -857,7 +857,7 @@ calculateCRC(const void *buf, guint len) {
/* Adds text to item, with trailing "," if required */
/*****************************************************************/
static gboolean
-add_item_text(proto_item *item, gchar *text, gboolean comma_needed)
+add_item_text(proto_item *item, const gchar *text, gboolean comma_needed)
{
if (comma_needed) {
proto_item_append_text(item, ", ");