diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-01-08 22:54:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-08 22:54:49 +0000 |
commit | f0cb505aeba32c821932f38696c10926cfc0a340 (patch) | |
tree | 477b5c191ca556eba476a2705328c0c299d2963b /libavutil/integer.c | |
parent | a005768d25647bf6e9d66eeb15e28c532b4ff40e (diff) | |
download | ffmpeg-f0cb505aeba32c821932f38696c10926cfc0a340.tar.gz |
Allow compilation of test programs when TEST is defined.
Originally committed as revision 11473 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/integer.c')
-rw-r--r-- | libavutil/integer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/integer.c b/libavutil/integer.c index 89e6d50124..55dde412d4 100644 --- a/libavutil/integer.c +++ b/libavutil/integer.c @@ -156,7 +156,7 @@ int64_t av_i2int(AVInteger a){ return out; } -#if 0 +#ifdef TEST #undef NDEBUG #include <assert.h> |