diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-20 00:23:13 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-20 00:23:13 +0000 |
commit | 7349392535b4b5411306bbe7d163765e85fea817 (patch) | |
tree | 553b04ba63a318b87c30e4c458f97864b844b242 | |
parent | b56e34c5e90a86b9f856f05362f50135d9845096 (diff) | |
download | ffmpeg-7349392535b4b5411306bbe7d163765e85fea817.tar.gz |
Make softfloat test program compile again: Setting the av_log_level variable
needs to be replaced by a call to av_log_set_level().
Originally committed as revision 18056 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/softfloat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/softfloat.c b/libavutil/softfloat.c index a5757c270f..efa0420b4f 100644 --- a/libavutil/softfloat.c +++ b/libavutil/softfloat.c @@ -32,7 +32,7 @@ int main(void){ SoftFloat sf1, sf2; double d1, d2; int i, j; -av_log_level = AV_LOG_DEBUG; + av_log_set_level(AV_LOG_DEBUG); d1= 1; for(i= 0; i<10; i++){ |