Commit 9ee16e25 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

stl: fix sign warning

parent 9b49f7c9
...@@ -68,7 +68,7 @@ struct demux_sys_t { ...@@ -68,7 +68,7 @@ struct demux_sys_t {
int64_t next_date; int64_t next_date;
}; };
static int ParseInteger(uint8_t *data, int size) static int ParseInteger(uint8_t *data, size_t size)
{ {
char tmp[16]; char tmp[16];
assert(size < sizeof(tmp)); assert(size < sizeof(tmp));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment