Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/gcompris/sdlplayer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gcompris/sdlplayer.c')
-rw-r--r--src/gcompris/sdlplayer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gcompris/sdlplayer.c b/src/gcompris/sdlplayer.c
index f17b56d..87b20e8 100644
--- a/src/gcompris/sdlplayer.c
+++ b/src/gcompris/sdlplayer.c
@@ -46,15 +46,15 @@ static gboolean sound_paused = FALSE;
void errorv(char *str, va_list ap)
{
- vfprintf(stderr,str,ap);
+ //vfprintf(stderr,str,ap);
if(strcmp(Mix_GetError(), "Unrecognized file type (not VOC)")==0) {
- fprintf(stderr,"*** You need a version of \"SDL_mixer\" with OGG Vorbis supported ***\n");
+ g_warning("*** You need a version of \"SDL_mixer\" with OGG Vorbis supported ***\n");
exit(EXIT_FAILURE);
}
- fprintf(stderr,": %s.\n", Mix_GetError());
- fprintf(stderr,": %s.\n", SDL_GetError());
+ g_warning(": %s.\n", Mix_GetError());
+ g_warning(": %s.\n", SDL_GetError());
}