]> git.sesse.net Git - vlc/commitdiff
compile fix
authorAntoine Cellerier <dionoea@videolan.org>
Sun, 10 Jul 2005 09:50:34 +0000 (09:50 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Sun, 10 Jul 2005 09:50:34 +0000 (09:50 +0000)
src/extras/libc.c

index c51fac7d2a2c3c4686ad8d14e07d6a8c2310b42c..ca2b4bf46824312633511e1ec6ff2b23d32a7149 100644 (file)
@@ -467,7 +467,7 @@ vlc_bool_t vlc_reduce( unsigned *pi_dst_nom, unsigned *pi_dst_den,
                        uint64_t i_nom, uint64_t i_den, uint64_t i_max )
 {
     vlc_bool_t b_exact = 1;
-    uint64_t u_gcd;
+    int64_t i_gcd;
 
     if( i_den == 0 )
     {