[MPlayer-cvslog] r20366 - trunk/configure

reimar subversion at mplayerhq.hu
Sun Oct 22 17:13:51 CEST 2006


Author: reimar
Date: Sun Oct 22 17:13:50 2006
New Revision: 20366

Modified:
   trunk/configure

Log:
Consistency fix: use "signed long long" for int_fast64_t instead of
"signed long long int", since uint_fast64_t uses "unsigned long long"


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Sun Oct 22 17:13:50 2006
@@ -2841,7 +2841,7 @@
     typedef signed char int_fast8_t;
     typedef signed int  int_fast16_t;
     typedef signed int  int_fast32_t;
-    typedef signed long long int  int_fast64_t;
+    typedef signed long long int_fast64_t;
     typedef unsigned char uint_fast8_t;
     typedef unsigned int  uint_fast16_t;
     typedef unsigned int  uint_fast32_t;



More information about the MPlayer-cvslog mailing list