diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-11-14 00:56:56 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-11-14 00:56:56 +0000 |
commit | 10265a1aa9c355aeff79c974efc1e04845d08614 (patch) | |
tree | 30cce6074f21255bee9d6baa82348f199515fc96 | |
parent | c21fb33916ba7a13f9176a990851cfb26243de73 (diff) | |
download | ffmpeg-10265a1aa9c355aeff79c974efc1e04845d08614.tar.gz |
Remove redundant #ifdef HAVE_THREAD, the file is only compiled
if that condition holds anyway.
Originally committed as revision 7029 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/os2thread.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/os2thread.c b/libavcodec/os2thread.c index 21e867b25a..c52b7ae02e 100644 --- a/libavcodec/os2thread.c +++ b/libavcodec/os2thread.c @@ -25,8 +25,6 @@ #include "avcodec.h" #include "common.h" -#ifdef HAVE_THREADS - #define INCL_DOS #define INCL_DOSERRORS #define INCL_DOSDEVIOCTL @@ -147,4 +145,3 @@ fail: avcodec_thread_free(s); return -1; } -#endif |