diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2003-10-16 10:29:05 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2003-10-16 10:29:05 +0800 |
commit | 583a1883cfdd469dc3691ad1490d312619f2ec83 (patch) | |
tree | 9dd4cc4b25f5a2fdb85db1eaff83fdb0e4cdde27 /japanese/ming/files | |
parent | a9e7ec9e79c133f813c5f01736577ab824a06d0f (diff) | |
download | freebsd-ports-gnome-583a1883cfdd469dc3691ad1490d312619f2ec83.tar.gz freebsd-ports-gnome-583a1883cfdd469dc3691ad1490d312619f2ec83.tar.zst freebsd-ports-gnome-583a1883cfdd469dc3691ad1490d312619f2ec83.zip |
Unbreak on 5.x.
Prodded by: kris
Diffstat (limited to 'japanese/ming/files')
-rw-r--r-- | japanese/ming/files/patch-raw2adpcm.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/japanese/ming/files/patch-raw2adpcm.c b/japanese/ming/files/patch-raw2adpcm.c new file mode 100644 index 000000000000..2378ac5c3964 --- /dev/null +++ b/japanese/ming/files/patch-raw2adpcm.c @@ -0,0 +1,30 @@ +--- ../util/raw2adpcm.c.orig Thu Oct 16 11:25:25 2003 ++++ ../util/raw2adpcm.c Thu Oct 16 11:26:25 2003 +@@ -178,17 +178,16 @@ + int i; + + if (argc < 3) { +- printf("\ +-%s converts a raw sound data to adpcm compressed. +- +-Usage: +-%s in out [16bit] [stereo] +- +-in : the filename of input file, raw sound data +-out : the filename of output file, ADPCM compressed +-16bit : bits per sample 0=8bit 1=16bit default=1=16bit +-stereo : number of channels 0=mono 1=stereo default=1=stereo +-", argv[0], argv[0]); ++ printf("\n"); ++ printf("%s converts a raw sound data to adpcm compressed.\n", argv[0]); ++ printf("\n"); ++ printf("Usage:\n"); ++ printf("%s in out [16bit] [stereo]\n", argv[0]); ++ printf("\n"); ++ printf("in : the filename of input file, raw sound data\n"); ++ printf("out : the filename of output file, ADPCM compressed\n"); ++ printf("16bit : bits per sample 0=8bit 1=16bit default=1=16bit\n"); ++ printf("stereo : number of channels 0=mono 1=stereo default=1=stereo\n"); + exit(0); + } + |