diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-12-25 15:16:33 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-12-25 15:16:33 +0000 |
commit | dd3d85290c6254c33de0399e1e3b6c457869363c (patch) | |
tree | 4784ccdda16904908e524f1b1e656df67662481c | |
parent | e1c221ba977a17e1cd47cc1eb78d4ffc967dec3e (diff) | |
download | xine-lib-dd3d85290c6254c33de0399e1e3b6c457869363c.tar.gz xine-lib-dd3d85290c6254c33de0399e1e3b6c457869363c.tar.bz2 |
* Allow building with Sun CC by fixing the lprintf variadic macro; patch by
Taso N. Devetzis. [bug #1614406]
CVS patchset: 8438
CVS date: 2006/12/25 15:16:33
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/xine-utils/xineutils.h | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -9,6 +9,8 @@ xine-lib (1.1.4) code being generated. * Fix race condition in audio_out by using a recursive mutex; patch by Reinhard Nissl. [bug #1551911] + * Allow building with Sun CC by fixing the lprintf variadic macro; patch by + Taso N. Devetzis. [bug #1614406] xine-lib (1.1.3) * Security fixes: diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h index 9c8ba507d..03c5f689a 100644 --- a/src/xine-utils/xineutils.h +++ b/src/xine-utils/xineutils.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xineutils.h,v 1.106 2006/12/18 18:32:44 klan Exp $ + * $Id: xineutils.h,v 1.107 2006/12/25 15:16:33 dgp85 Exp $ * */ #ifndef XINEUTILS_H @@ -858,7 +858,7 @@ void xine_hexdump (const char *buf, int length) XINE_PROTECTED; fflush(stdout); \ } while(0) #else /* _MSC_VER */ - #define lprintf(fmt, ...) \ + #define lprintf(...) \ do { \ LONG_LOG_MODULE_STRING \ printf(__VA_ARGS__); \ |