summaryrefslogtreecommitdiffstats
path: root/liba52
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-22 17:00:43 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-22 17:00:43 +0000
commit03d9657f103ef23118cf176bd4517d420b3864df (patch)
treee61464f633ad9cfc5d87d0f3bb8b7cdc50c1970b /liba52
parent37b1d73ae30289b62598eef20b9e297f8e9fba5b (diff)
downloadmpv-03d9657f103ef23118cf176bd4517d420b3864df.tar.bz2
mpv-03d9657f103ef23118cf176bd4517d420b3864df.tar.xz
cosmetics: spelling fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25501 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'liba52')
-rw-r--r--liba52/compare.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/liba52/compare.c b/liba52/compare.c
index 96463bcfd4..f2fb63b82c 100644
--- a/liba52/compare.c
+++ b/liba52/compare.c
@@ -1,10 +1,10 @@
-// File written by Michael Niedermayer and its under GPL
-// simple file compare program, it finds the number of rounding errors
-// and dies if there is a larger error ( ABS(a-b)>1 )
+// File written by Michael Niedermayer and it is under GPL.
+// Simple file compare program, it finds the number of rounding errors
+// and dies if there is too large an error ( ABS(a-b)>1 ).
#include <stdio.h>
-// FIXME no checks but its just for debuging so who cares ;)
+// FIXME: No checks but it is just for debugging so who cares ;)
int main(int argc, char **argv)
{
@@ -40,7 +40,7 @@ int main(int argc, char **argv)
if(d<0) d=-d; // ABS
if(d>1)
{
- printf("FATAL error, too large differnce found (%d)!\n", d);
+ printf("FATAL error, too large a difference found (%d)!\n", d);
exit(1);
}
@@ -52,4 +52,5 @@ int main(int argc, char **argv)
printf("%d (+/-1)differences found\n", dif);
exit(0);
-} \ No newline at end of file
+}
+