diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-05-07 22:30:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-05-08 03:25:17 +0200 |
commit | 80a3227be624b475736ae765f57cb5f8c5f2373b (patch) | |
tree | e942c1b3c1992a056f8f377d9ed844feae375262 /ffprobe.c | |
parent | c0443c1af1a772daf33731da7262f3aa6b28dc8e (diff) | |
download | ffmpeg-80a3227be624b475736ae765f57cb5f8c5f2373b.tar.gz |
ffprobe: make function replacement macros behave correctly
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -57,11 +57,11 @@ # ifdef pthread_mutex_lock # undef pthread_mutex_lock # endif -# define pthread_mutex_lock(a) +# define pthread_mutex_lock(a) do{}while(0) # ifdef pthread_mutex_unlock # undef pthread_mutex_unlock # endif -# define pthread_mutex_unlock(a) +# define pthread_mutex_unlock(a) do{}while(0) #endif typedef struct InputStream { |