prevent signed/unsigned conflicts

This commit is contained in:
Hartmut Holzgraefe
2015-02-14 15:34:11 +01:00
parent 21613cb03d
commit 3ecf926092

View File

@ -237,7 +237,7 @@ char *
modutil_get_SQL(GWBUF *buf)
{
unsigned int len, length;
unsigned char *ptr, *dptr, *rval = NULL;
char *ptr, *dptr, *rval = NULL;
if (!modutil_is_SQL(buf))
return rval;
@ -671,4 +671,4 @@ static void modutil_reply_routing_error(
/** Create an incoming event for backend DCB */
poll_add_epollin_event_to_dcb(backend_dcb, buf);
return;
}
}