diff ffm.c @ 1556:65b7b3ff4ed7 libavformat

use the standard INT64_C() macro for 64-bit constants
author mru
date Wed, 06 Dec 2006 23:46:11 +0000
parents 404048ea11bc
children eb16c64144ee
line wrap: on
line diff
--- a/ffm.c	Wed Dec 06 17:17:33 2006 +0000
+++ b/ffm.c	Wed Dec 06 23:46:11 2006 +0000
@@ -469,7 +469,7 @@
         ffm->file_size = url_fsize(pb);
         adjust_write_index(s);
     } else {
-        ffm->file_size = (uint64_t_C(1) << 63) - 1;
+        ffm->file_size = (UINT64_C(1) << 63) - 1;
     }
 
     nb_streams = get_be32(pb);