diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-25 16:49:26 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-07-18 18:12:38 +0200 |
commit | 439902e0d68a0f0d800c21b5e6b598d5fa0c51da (patch) | |
tree | b9febaa4971befd75a6d04ae032ae3c8495d1b94 /compat/w32pthreads.h | |
parent | d010e95f86089abe9a3d4d4a66ac8102312d28a4 (diff) | |
download | ffmpeg-439902e0d68a0f0d800c21b5e6b598d5fa0c51da.tar.gz |
Employ consistent LIBAV_COMPAT_ multiple inclusion guards in compat/
Also fix a comment and an #endif comment.
Diffstat (limited to 'compat/w32pthreads.h')
-rw-r--r-- | compat/w32pthreads.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compat/w32pthreads.h b/compat/w32pthreads.h index a5ff6ac258..8b7ff6ba7a 100644 --- a/compat/w32pthreads.h +++ b/compat/w32pthreads.h @@ -26,8 +26,8 @@ * w32threads to pthreads wrapper */ -#ifndef LIBAV_W32PTHREADS_H -#define LIBAV_W32PTHREADS_H +#ifndef LIBAV_COMPAT_W32PTHREADS_H +#define LIBAV_COMPAT_W32PTHREADS_H /* Build up a pthread-like API using underlying Windows API. Have only static * methods so as to not conflict with a potentially linked in pthread-win32 @@ -276,4 +276,4 @@ static void w32thread_init(void) } -#endif /* LIBAV_W32PTHREADS_H */ +#endif /* LIBAV_COMPAT_W32PTHREADS_H */ |