From 03d9657f103ef23118cf176bd4517d420b3864df Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 22 Dec 2007 17:00:43 +0000 Subject: cosmetics: spelling fixes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25501 b3059339-0415-0410-9bf9-f77b7e298cf2 --- liba52/compare.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'liba52') 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 -// 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 +} + -- cgit v1.2.3