diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/scratch.c | 4 | ||||
-rw-r--r-- | src/xine-engine/scratch.h | 4 | ||||
-rw-r--r-- | src/xine-engine/xine.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/xine-engine/scratch.c b/src/xine-engine/scratch.c index 364f85d09..154a9bb67 100644 --- a/src/xine-engine/scratch.c +++ b/src/xine-engine/scratch.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: scratch.c,v 1.5 2002/01/13 21:15:48 jcdutton Exp $ + * $Id: scratch.c,v 1.6 2002/01/16 17:35:34 miguelfreitas Exp $ * * top-level xine functions * @@ -88,7 +88,7 @@ scratch_buffer_t *new_scratch_buffer (int num_lines) { this->ordered[i] = NULL; this->lines[i] = NULL; - this->printf = scratch_printf; + this->scratch_printf = scratch_printf; this->get_content = scratch_get_content; this->num_lines = num_lines; diff --git a/src/xine-engine/scratch.h b/src/xine-engine/scratch.h index aad303b32..770c83fb1 100644 --- a/src/xine-engine/scratch.h +++ b/src/xine-engine/scratch.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: scratch.h,v 1.1 2001/12/09 17:24:39 guenter Exp $ + * $Id: scratch.h,v 1.2 2002/01/16 17:35:34 miguelfreitas Exp $ * * scratch buffer for log output * @@ -32,7 +32,7 @@ typedef struct scratch_buffer_s scratch_buffer_t; struct scratch_buffer_s { - void (*printf) (scratch_buffer_t *this, const char *format, va_list ap); + void (*scratch_printf) (scratch_buffer_t *this, const char *format, va_list ap); char **(*get_content) (scratch_buffer_t *this); 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); } |