diff utils.c @ 3075:961af1358c7f libavcodec

add static keyword to some functions patch by Dieter <freebsd at sopwith solgatos com>
author mru
date Mon, 30 Jan 2006 23:33:19 +0000
parents 259fed5adf5d
children ddf6d81a6369
line wrap: on
line diff
--- a/utils.c	Mon Jan 30 22:59:09 2006 +0000
+++ b/utils.c	Mon Jan 30 23:33:19 2006 +0000
@@ -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();
 }