GWBUF_DATA(...) explicitly returns uint8_t*

This commit is contained in:
Johan Wikman
2016-11-24 13:31:29 +02:00
parent 04753bbb76
commit 265aacaf15
16 changed files with 27 additions and 26 deletions

View File

@ -854,9 +854,9 @@ gwbuf_get_property(GWBUF *buf, char *name)
GWBUF *
gwbuf_make_contiguous(GWBUF *orig)
{
GWBUF *newbuf;
char *ptr;
int len;
GWBUF *newbuf;
uint8_t *ptr;
int len;
if (orig == NULL)
{