diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-25 22:40:43 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-25 22:40:43 +0000 |
commit | 77652a6aaff5c06267803f3770f8a613c7252171 (patch) | |
tree | 76230d836ce5e7d5ebb6a760ea73a0fd9d868bdc /libavutil/log.c | |
parent | 14a8acf108d24de2794229f755773c2b7459ba67 (diff) | |
download | ffmpeg-77652a6aaff5c06267803f3770f8a613c7252171.tar.gz |
C files should #include the header files of the same name.
Originally committed as revision 16792 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/log.c')
-rw-r--r-- | libavutil/log.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/log.c b/libavutil/log.c index 9248752a55..5fec3328c0 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -25,6 +25,7 @@ */ #include "avutil.h" +#include "log.h" int av_log_level = AV_LOG_INFO; |