summaryrefslogtreecommitdiff
path: root/src/libtipidee/tipidee_uri_parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libtipidee/tipidee_uri_parse.c')
-rw-r--r--src/libtipidee/tipidee_uri_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtipidee/tipidee_uri_parse.c b/src/libtipidee/tipidee_uri_parse.c
index 6f0064a..eac1bd8 100644
--- a/src/libtipidee/tipidee_uri_parse.c
+++ b/src/libtipidee/tipidee_uri_parse.c
@@ -97,7 +97,7 @@ END = 13, X = 14
static inline uint8_t uridecode_cclass (char c)
{
static uint8_t const table[128] = "01111111111111111111111111111111161162>>>>>=>==4;;;;;;;;;;5>>=>36<<<<<<====================>1>==1<<<<<<=7=======9==:8======111=1" ;
- return c < 0 ? 1 : table[(uint8_t)c] - '0' ;
+ return c & 0x80 ? 1 : table[(uint8_t)c] - '0' ;
}
size_t tipidee_uri_parse (char *out, size_t max, char const *in, tipidee_uri *uri)