Corrected some pointer types to avoid warnings from clang.

svn path=/trunk/; revision=34774
This commit is contained in:
Stig Bjørlykke 2010-11-04 11:26:20 +00:00
parent 4a69d9203d
commit 0b3ed37b63
1 changed files with 2 additions and 2 deletions

View File

@ -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;