summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJames Courtier-Dutton <jcdutton@users.sourceforge.net>2006-09-10 19:33:53 +0000
committerJames Courtier-Dutton <jcdutton@users.sourceforge.net>2006-09-10 19:33:53 +0000
commit9246aac64ffa5dd71aa0b28fc63cc59a3305b552 (patch)
treeea75c48f70b3feb2a34c07cb7701bf5569f89c08 /include
parentabd545bbb37d5bf4b2a2d686a2e622fd6b8a6db3 (diff)
downloadxine-lib-9246aac64ffa5dd71aa0b28fc63cc59a3305b552.tar.gz
xine-lib-9246aac64ffa5dd71aa0b28fc63cc59a3305b552.tar.bz2
Allow xine-lib to compile with gcc 4.1.1.
dsputil_mmx.c patch taked from gentoo portage. CVS patchset: 8216 CVS date: 2006/09/10 19:33:53
Diffstat (limited to 'include')
-rw-r--r--include/xine.h.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/xine.h.in b/include/xine.h.in
index d2cbaf156..8026eebd1 100644
--- a/include/xine.h.in
+++ b/include/xine.h.in
@@ -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: xine.h.in,v 1.151 2006/09/09 17:41:45 dgp85 Exp $
+ * $Id: xine.h.in,v 1.152 2006/09/10 19:33:53 jcdutton Exp $
*
* public xine-lib (libxine) interface and documentation
*
@@ -792,12 +792,12 @@ const char *const *xine_get_log_names(xine_t *self);
void xine_log (xine_t *self, int buf,
const char *format, ...);
void xine_vlog(xine_t *this, int buf,
- const char *format, va_list args);
+ const char *format, ...);
#else
void xine_log (xine_t *self, int buf,
const char *format, ...) __attribute__ ((__format__(printf, 3, 4)));
void xine_vlog(xine_t *this, int buf,
- const char *format, va_list args) __attribute__ ((__format__(printf, 3, 0)));
+ const char *format, ...) __attribute__ ((__format__(printf, 3, 0)));
#endif
/* get log messages of specified section */