diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-09-30 22:52:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-09-30 22:52:29 +0000 |
commit | c619572a7b70220e470a22165d83bda223eedc7a (patch) | |
tree | bbe38102219dc31208f761ac466050ed6efdbb5b | |
parent | b926b6282d3b9fc8115660ae013f74f4f8c06d30 (diff) | |
download | ffmpeg-c619572a7b70220e470a22165d83bda223eedc7a.tar.gz |
Fix a typo in the nameing of av_assert0() in currently not compiled code.
Originally committed as revision 25279 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/assert.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/assert.h b/libavutil/assert.h index 8f6e2f0208..cf76912564 100644 --- a/libavutil/assert.h +++ b/libavutil/assert.h @@ -41,7 +41,7 @@ * These asserts() thus can be enabled without fearing speedloss. */ #if defined(ASSERT_LEVEL) && ASSERT_LEVEL > 0 -#define av_assert1(cond) av_assert_always(cond) +#define av_assert1(cond) av_assert0(cond) #else #define av_assert1(cond) ((void)0) #endif @@ -51,7 +51,7 @@ * assert() equivalent, that does lie in speed critical code. */ #if defined(ASSERT_LEVEL) && ASSERT_LEVEL > 1 -#define av_assert2(cond) av_assert_always(cond) +#define av_assert2(cond) av_assert0(cond) #else #define av_assert2(cond) ((void)0) #endif |