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/scratch.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/scratch.c')
-rw-r--r-- | src/xine-engine/scratch.c | 4 |
1 files changed, 2 insertions, 2 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; |