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