From c619572a7b70220e470a22165d83bda223eedc7a Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 30 Sep 2010 22:52:29 +0000 Subject: [PATCH] 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 --- libavutil/assert.h | 4 ++-- 1 file 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