diff mathematics.c @ 128:d94fb7e6cb53 libavutil

Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts. patch by Steve Lhomme, slhomme divxcorp com
author diego
date Wed, 01 Nov 2006 22:39:58 +0000
parents d76a36742464
children f9a4c04ebb0e
line wrap: on
line diff
--- a/mathematics.c	Wed Nov 01 22:37:56 2006 +0000
+++ b/mathematics.c	Wed Nov 01 22:39:58 2006 +0000
@@ -131,7 +131,7 @@
                 if((double)a * (double)b / (double)c > (1LL<<63))
                     continue;
 
-                if(d!=e) printf("%Ld*%Ld/%Ld= %Ld=%Ld\n", a, b, c, d, e);
+                if(d!=e) printf("%"PRId64"*%"PRId64"/%"PRId64"= %"PRId64"=%"PRId64"\n", a, b, c, d, e);
             }
         }
     }