[Ffmpeg-devel] [PATCH] part 13 - portability fixes (ILP32 vs LP64)
    Dieter 
    freebsd
       
    Sun Jan 29 21:22:10 CET 2006
    
    
  
Diffs for file: libavcodec/utils.c
===================================================================
RCS file: RCS/utils.c,v
retrieving revision 1.1
diff -u -r1.1 utils.c
--- utils.c     2006/01/26 21:04:22     1.1
+++ utils.c     2006/01/26 21:04:46
@@ -149,9 +149,9 @@
  * Call av_free_static automatically before it's too late
  */
 
-static void do_free() __attribute__ ((destructor));
+static void do_free(void) __attribute__ ((destructor));
 
-static void do_free()
+static void do_free(void)
 {
     av_free_static();
 }
    
    
More information about the ffmpeg-devel
mailing list