diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-01-16 17:35:34 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-01-16 17:35:34 +0000 |
commit | d566503433646294c05531f618002d95f38f514a (patch) | |
tree | 9d9885abd4b32a2ba4d9d5f772ee06f055be9d79 /src/xine-engine/xine.c | |
parent | 83956cafeae75fabbfb2f8c53cc2845933ffe378 (diff) | |
download | xine-lib-d566503433646294c05531f618002d95f38f514a.tar.gz xine-lib-d566503433646294c05531f618002d95f38f514a.tar.bz2 |
changing function pointer name to make new gcc happy. (i think it is
stupid to #define printf -- gcc/glibc is broken not xine!)
CVS patchset: 1416
CVS date: 2002/01/16 17:35:34
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 536ac4f25..d8cc7b2e6 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -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.c,v 1.98 2002/01/15 13:51:10 guenter Exp $ + * $Id: xine.c,v 1.99 2002/01/16 17:35:34 miguelfreitas Exp $ * * top-level xine functions * @@ -859,7 +859,7 @@ void xine_log (xine_t *this, int buf, const char *format, ...) { va_start (argp, format); - this->log_buffers[buf]->printf (this->log_buffers[buf], format, argp); + this->log_buffers[buf]->scratch_printf (this->log_buffers[buf], format, argp); va_end (argp); } |