summaryrefslogtreecommitdiff
path: root/epan/strutil.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-11-04 11:26:20 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-11-04 11:26:20 +0000
commit0b3ed37b63db5cecd130ac8da8643cd7297bfc2a (patch)
tree015faecd67536a305192252d97239436dada1023 /epan/strutil.c
parent4a69d9203d590cdd9ffdfb06fa716224cfae286b (diff)
downloadwireshark-0b3ed37b63db5cecd130ac8da8643cd7297bfc2a.tar.gz
Corrected some pointer types to avoid warnings from clang.
svn path=/trunk/; revision=34774
Diffstat (limited to 'epan/strutil.c')
-rw-r--r--epan/strutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/strutil.c b/epan/strutil.c
index 4bd1bf0baf..f1a6d10d23 100644
--- a/epan/strutil.c
+++ b/epan/strutil.c
@@ -539,8 +539,8 @@ format_uri(const GByteArray *bytes, const gchar *reserved_chars)
static gchar *fmtbuf[3];
static guint fmtbuf_len[3];
static guint idx;
- const gchar *reserved_def = ":/?#[]@!$&'()*+,;= ";
- const gchar *reserved = reserved_def;
+ const guchar *reserved_def = ":/?#[]@!$&'()*+,;= ";
+ const guchar *reserved = reserved_def;
guint8 c;
guint column, i;
gboolean is_reserved = FALSE;