summaryrefslogtreecommitdiffstats
path: root/TOOLS/alaw-gen.c
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-25 18:19:53 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-25 18:19:53 +0000
commitce542caa8b926cea2eae8ca420ba3e32ea2e7087 (patch)
treef1e9936a04190bf4d7222407bd410b4070efc455 /TOOLS/alaw-gen.c
parent6c18809ad203aff398276442272c8064305ebb0a (diff)
downloadmpv-ce542caa8b926cea2eae8ca420ba3e32ea2e7087.tar.bz2
mpv-ce542caa8b926cea2eae8ca420ba3e32ea2e7087.tar.xz
missing semicolon fixed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@881 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS/alaw-gen.c')
-rw-r--r--TOOLS/alaw-gen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/TOOLS/alaw-gen.c b/TOOLS/alaw-gen.c
index 529a1ff056..fb465eb595 100644
--- a/TOOLS/alaw-gen.c
+++ b/TOOLS/alaw-gen.c
@@ -26,7 +26,7 @@ for(i=0;i<256;i++){
if((i&7)==7) printf("\n");
}
fclose(f);
-printf("}\n");
+printf("};\n");
system("sox -t raw -U -r 8000 -b alaw.dat -t sw alaw.out");
@@ -41,7 +41,7 @@ for(i=0;i<256;i++){
if((i&7)==7) printf("\n");
}
fclose(f);
-printf("}\n");
+printf("};\n");
}