From caa54bbf143b08932bfef07f4e025c8d3a9daeec Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 30 Oct 2006 09:50:29 +0000 Subject: [PATCH] made error messages more precise --- lib/modules/swfsound.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/modules/swfsound.c b/lib/modules/swfsound.c index bcd3951..d76baec 100644 --- a/lib/modules/swfsound.c +++ b/lib/modules/swfsound.c @@ -257,15 +257,15 @@ void swf_SetSoundDefine(TAG*tag, S16*samples, int num) void swf_SetSoundStreamHead(TAG*tag, int avgnumsamples) { - fprintf(stderr, "Error: no sound support compiled in.\n");exit(1); + fprintf(stderr, "Error: no mp3 soundstream support compiled in.\n");exit(1); } void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int seek, char first) { - fprintf(stderr, "Error: no sound support compiled in.\n");exit(1); + fprintf(stderr, "Error: no mp3 soundstream support compiled in.\n");exit(1); } void swf_SetSoundStreamEnd(TAG*tag) { - fprintf(stderr, "Error: no sound support compiled in.\n");exit(1); + fprintf(stderr, "Error: no mp3 soundstream support compiled in.\n");exit(1); } void swf_SetSoundDefine(TAG*tag, S16*samples, int num) { -- 1.7.10.4