diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-10 16:30:26 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-10 16:30:26 +0000 |
commit | 4fa58b74745ead74fd3aeb83deb1ff534cc21539 (patch) | |
tree | ba46c5661de6f4b37773ccdfdd42fa59ecba0488 /src/libffmpeg/libavcodec/common.h | |
parent | 1772b91fb4e086392d3b3a7a01b3ea5acfe481ce (diff) | |
download | xine-lib-4fa58b74745ead74fd3aeb83deb1ff534cc21539.tar.gz xine-lib-4fa58b74745ead74fd3aeb83deb1ff534cc21539.tar.bz2 |
fix warnings about NDEBUG being redefined
CVS patchset: 5886
CVS date: 2003/12/10 16:30:26
Diffstat (limited to 'src/libffmpeg/libavcodec/common.h')
-rw-r--r-- | src/libffmpeg/libavcodec/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libffmpeg/libavcodec/common.h b/src/libffmpeg/libavcodec/common.h index 96dc443bd..870a3279c 100644 --- a/src/libffmpeg/libavcodec/common.h +++ b/src/libffmpeg/libavcodec/common.h @@ -173,7 +173,9 @@ typedef signed __int64 int64_t; /* debug stuff */ # ifndef DEBUG +# ifndef NDEBUG # define NDEBUG +# endif # endif # include <assert.h> |