diff utils.c @ 703:65f9e32225ba libavcodec

Minor warning fix.
author mellum
date Sat, 28 Sep 2002 01:49:37 +0000
parents 83d2c9d50d7d
children 3be57e506f01
line wrap: on
line diff
--- a/utils.c	Fri Sep 27 15:38:54 2002 +0000
+++ b/utils.c	Sat Sep 28 01:49:37 2002 +0000
@@ -67,7 +67,7 @@
  * allocates a AVCodecContext and set it to defaults.
  * this can be deallocated by simply calling free() 
  */
-AVCodecContext *avcodec_alloc_context(){
+AVCodecContext *avcodec_alloc_context(void){
     AVCodecContext *avctx= av_mallocz(sizeof(AVCodecContext));
     
     if(avctx==NULL) return NULL;