summaryrefslogtreecommitdiff
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorFalk Hüffner <mellum@users.sourceforge.net>2002-09-28 01:49:37 +0000
committerFalk Hüffner <mellum@users.sourceforge.net>2002-09-28 01:49:37 +0000
commit7ffbb60ee7da48804c918c160c7cba15ee4c95a1 (patch)
tree16d7e98b4b7f6e6edea2c3f580f6d899e44976fb /libavcodec/utils.c
parenta9c6830605ed6aacb6f49fcdc00df2d7bb6bea02 (diff)
Minor warning fix.
Originally committed as revision 977 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 933638f5c9..8271d4c648 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -67,7 +67,7 @@ void avcodec_get_context_defaults(AVCodecContext *s){
* 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;