changeset 9384:828d15d322ed libavcodec

Add forgotten void return type to ff_h264_free_context
author reimar
date Fri, 10 Apr 2009 11:31:55 +0000
parents 016519c432ef
children 6cd9e789dd9e
files h264.c h264.h
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/h264.c	Fri Apr 10 11:29:51 2009 +0000
+++ b/h264.c	Fri Apr 10 11:31:55 2009 +0000
@@ -8083,7 +8083,7 @@
 #endif /* TEST */
 
 
-av_cold ff_h264_free_context(H264Context *h)
+av_cold void ff_h264_free_context(H264Context *h)
 {
     int i;
 
--- a/h264.h	Fri Apr 10 11:29:51 2009 +0000
+++ b/h264.h	Fri Apr 10 11:31:55 2009 +0000
@@ -572,6 +572,6 @@
 /**
  * frees any data that may have been allocated in the H264 context like SPS, PPS etc.
  */
-av_cold ff_h264_free_context(H264Context *h);
+av_cold void ff_h264_free_context(H264Context *h);
 
 #endif /* AVCODEC_H264_H */