diff options
| author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-10 19:50:09 +0000 |
|---|---|---|
| committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-10 19:50:09 +0000 |
| commit | 7bea3749ab64e9431a66cdc766d0a52b1e224378 (patch) | |
| tree | 28ab25dec75140c0e582594193d9b3ea2dfb0f09 /include | |
| parent | 9246aac64ffa5dd71aa0b28fc63cc59a3305b552 (diff) | |
| download | xine-lib-7bea3749ab64e9431a66cdc766d0a52b1e224378.tar.gz xine-lib-7bea3749ab64e9431a66cdc766d0a52b1e224378.tar.bz2 | |
Restre xine_vlog as a va_list function, xine_log is already a variable arguments function.
CVS patchset: 8217
CVS date: 2006/09/10 19:50:09
Diffstat (limited to 'include')
| -rw-r--r-- | include/xine.h.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 8026eebd1..3c7582761 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.152 2006/09/10 19:33:53 jcdutton Exp $ + * $Id: xine.h.in,v 1.153 2006/09/10 19:50:09 dgp85 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, ...); + const char *format, va_list args); #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, ...) __attribute__ ((__format__(printf, 3, 0))); + const char *format, va_list args) __attribute__ ((__format__(printf, 3, 0))); #endif /* get log messages of specified section */ |
