summaryrefslogtreecommitdiff
path: root/epan/strutil.c
diff options
context:
space:
mode:
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;