Commit 103a7a75 authored by Gildas Bazin's avatar Gildas Bazin

* modules/demux/ts.c: WinCE fix.

parent 22d112f2
......@@ -549,7 +549,11 @@ static int Open( vlc_object_t *p_this )
}
else
{
#ifndef UNDER_CE
uint64_t i_ck = strtoull( psz, NULL, 16 );
#else
uint64_t i_ck = strtoll( psz, NULL, 16 );
#endif
uint8_t ck[8];
int i;
for( i = 0; i < 8; i++ )
......
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