diff options
author | Jörg Mayer <jmayer@loplof.de> | 2005-08-05 20:59:08 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2005-08-05 20:59:08 +0000 |
commit | 4e1f4b18abdec1658e835a77a9de8be87c965142 (patch) | |
tree | 0aeebf0f2c4ec7ea3813d2f0b9e10f3f77e851cd /gtk/conversations_sctp.c | |
parent | e6856b69f3ebf85a1a37cb7c7a508f2be41fb1fe (diff) | |
download | wireshark-4e1f4b18abdec1658e835a77a9de8be87c965142.tar.gz wireshark-4e1f4b18abdec1658e835a77a9de8be87c965142.tar.bz2 wireshark-4e1f4b18abdec1658e835a77a9de8be87c965142.zip |
More char -> const char warning fixes.
Removed (very few) casts that only change the warning message
but don't remove it (with gcc-4).
svn path=/trunk/; revision=15227
Diffstat (limited to 'gtk/conversations_sctp.c')
-rw-r--r-- | gtk/conversations_sctp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/conversations_sctp.c b/gtk/conversations_sctp.c index cfe36031dc..2a62cec083 100644 --- a/gtk/conversations_sctp.c +++ b/gtk/conversations_sctp.c @@ -1,7 +1,7 @@ /* conversations_sctp.c * conversations_sctp 2005 Oleg Terletsky <oleg.terletsky@comverse.com> * - * $Id:$ + * $Id$ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -62,9 +62,9 @@ sctp_conversation_packet(void *pct, packet_info *pinfo, epan_dissect_t *edt _U_, static void -sctp_conversation_init(char *optarg) +sctp_conversation_init(const char *optarg) { - char *filter=NULL; + const char *filter=NULL; if(!strncmp(optarg,"conv,sctp,",10)){ filter=optarg+10; |