Browse Source

stl: fix sign warning

pull/2/head
Rémi Denis-Courmont 15 years ago
parent
commit
9ee16e2591
  1. 2
      modules/demux/stl.c

2
modules/demux/stl.c

@ -68,7 +68,7 @@ struct demux_sys_t {
int64_t next_date;
};
static int ParseInteger(uint8_t *data, int size)
static int ParseInteger(uint8_t *data, size_t size)
{
char tmp[16];
assert(size < sizeof(tmp));

Loading…
Cancel
Save