[vlc-devel] commit: WinCE: remove useless work-around (Pierre Ynard )

git version control git at videolan.org
Mon Aug 31 10:49:00 CEST 2009


vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Mon Aug 31 10:46:31 2009 +0200| [129fbb1737a5440981bbeb878ee4394dacbe25fd] | committer: Pierre Ynard 

WinCE: remove useless work-around

strtoull() is supported by mingw32ce. And anyway this would go in compat/

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=129fbb1737a5440981bbeb878ee4394dacbe25fd
---

 modules/mux/mpeg/csa.c |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/modules/mux/mpeg/csa.c b/modules/mux/mpeg/csa.c
index 99ae905..453140e 100644
--- a/modules/mux/mpeg/csa.c
+++ b/modules/mux/mpeg/csa.c
@@ -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;
 




More information about the vlc-devel mailing list