diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-08-18 18:27:55 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-08-18 18:27:55 +0100 |
commit | 2306014beea61aa49e2b99a8d4f70d82a6900baa (patch) | |
tree | c6a278731ca24b7062d65cd9389d2c9cace3b245 | |
parent | 00d945c19296d092c56bb8b22321af18bda19438 (diff) | |
download | xine-lib-2306014beea61aa49e2b99a8d4f70d82a6900baa.tar.gz xine-lib-2306014beea61aa49e2b99a8d4f70d82a6900baa.tar.bz2 |
Fix another compilation failure when using C++.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/xine-engine/buffer.h | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ xine-lib (1.1.16) 2008-??-?? + * Fix reported compilation failures (with C++ programs). xine-lib (1.1.15) 2008-08-14 * Security fixes: diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index 1cf1f6361..9a30ea7e8 100644 --- a/src/xine-engine/buffer.h +++ b/src/xine-engine/buffer.h @@ -676,7 +676,7 @@ void _x_bmiheader_le2me( xine_bmiheader *bih ) XINE_PROTECTED; /* convert xine_waveformatex struct from little endian */ void _x_waveformatex_le2me( xine_waveformatex *wavex ) XINE_PROTECTED; -static inline int _x_is_fourcc(void *ptr, void *tag) { +static __inline int _x_is_fourcc(void *ptr, void *tag) { return memcmp(ptr, tag, 4) == 0; } |