Switch to using unsigned char in DLF import

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2014-12-28 23:38:41 +01:00 committed by Dirk Hohndel
parent 78d782f3e9
commit e86d298734
2 changed files with 3 additions and 3 deletions

View file

@ -2531,9 +2531,9 @@ int parse_cobalt_buffer(sqlite3 *handle, const char *url, const char *buffer, in
return 0;
}
int parse_dlf_buffer(char *buffer, size_t size)
int parse_dlf_buffer(unsigned char *buffer, size_t size)
{
char *ptr = (char *)buffer;
unsigned char *ptr = buffer;
bool event, found;
int i;