diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-12-01 14:15:36 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-12-14 18:15:57 +0100 |
commit | e10e6651b50b4087f08813f3e503620db7413d3a (patch) | |
tree | 37be33707496660cee89812290e89ef18c5a1b31 /libavutil | |
parent | e737a4aaafcb1d761b7f96043c2f83ce742c64ae (diff) | |
download | ffmpeg-e10e6651b50b4087f08813f3e503620db7413d3a.tar.gz |
thread: use "" instead of <> for including the w32pthreads wrapper
Found-by: Dave Yeo <dave.r.yeo@gmail.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/thread.h b/libavutil/thread.h index 07e3d4ac45..35565440f2 100644 --- a/libavutil/thread.h +++ b/libavutil/thread.h @@ -29,7 +29,7 @@ #if HAVE_PTHREADS #include <pthread.h> #else -#include <compat/w32pthreads.h> +#include "compat/w32pthreads.h" #endif #define AVMutex pthread_mutex_t |