Commit 129fbb17 authored by Pierre Ynard's avatar Pierre Ynard

WinCE: remove useless work-around

strtoull() is supported by mingw32ce. And anyway this would go in compat/
parent 0eb05e54
......@@ -99,11 +99,7 @@ int csa_SetCW( vlc_object_t *p_caller, csa_t *c, char *psz_ck, bool set_odd )
}
else
{
#ifndef UNDER_CE
uint64_t i_ck = strtoull( psz_ck, NULL, 16 );
#else
uint64_t i_ck = strtoll( psz_ck, NULL, 16 );
#endif
uint8_t ck[8];
int 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