]> git.sesse.net Git - vlc/commitdiff
WinCE: remove useless work-around
authorPierre Ynard <linkfanel@yahoo.fr>
Mon, 31 Aug 2009 08:46:31 +0000 (10:46 +0200)
committerPierre Ynard <linkfanel@yahoo.fr>
Mon, 31 Aug 2009 08:46:31 +0000 (10:46 +0200)
strtoull() is supported by mingw32ce. And anyway this would go in compat/

modules/mux/mpeg/csa.c

index 99ae905b57c1e9efb7744c45a78fec4c0f95582c..453140eb1e238c9ca623d7a4b5f987db8a3d2865 100644 (file)
@@ -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;