From: Thomas Vander Stichele Date: Fri, 19 Dec 2003 15:25:45 +0000 (+0000) Subject: minor cosmetic fixes X-Git-Tag: MOVE-TO-FDO^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b0a17df7ea31800fe8379db8edfa87058eded1b3;p=platform%2Fupstream%2Fgstreamer.git minor cosmetic fixes Original commit message from CVS: minor cosmetic fixes --- diff --git a/examples/retag/transcode.c b/examples/retag/transcode.c index c41f96e..07bd64f 100644 --- a/examples/retag/transcode.c +++ b/examples/retag/transcode.c @@ -4,7 +4,7 @@ * this, it parses the filename and sets artist and title in the ogg file. * It assumes the filename to be " - .mp3" * - * Run the program as "retag <mp3 file>" + * Run the program as "transcode <mp3 file>" * * To run this program, you need to have the gst-plugins package (specifically * the vorbis and mad plugins) installed. @@ -40,6 +40,7 @@ main (int argc, char *argv[]) title = strstr (artist, " - "); if (title == NULL) { g_print ("The format of the mp3 file is invalid.\n"); + g_print ("It needs to be in the form of artist - title.mp3.\n"); return 1; } *title = '\0'; diff --git a/tests/old/examples/retag/transcode.c b/tests/old/examples/retag/transcode.c index c41f96e..07bd64f 100644 --- a/tests/old/examples/retag/transcode.c +++ b/tests/old/examples/retag/transcode.c @@ -4,7 +4,7 @@ * this, it parses the filename and sets artist and title in the ogg file. * It assumes the filename to be "<artist> - <title>.mp3" * - * Run the program as "retag <mp3 file>" + * Run the program as "transcode <mp3 file>" * * To run this program, you need to have the gst-plugins package (specifically * the vorbis and mad plugins) installed. @@ -40,6 +40,7 @@ main (int argc, char *argv[]) title = strstr (artist, " - "); if (title == NULL) { g_print ("The format of the mp3 file is invalid.\n"); + g_print ("It needs to be in the form of artist - title.mp3.\n"); return 1; } *title = '\0';