[MPlayer-cvslog] r25502 - trunk/liba52/compare.c

diego subversion at mplayerhq.hu
Sat Dec 22 18:10:10 CET 2007


Author: diego
Date: Sat Dec 22 18:10:09 2007
New Revision: 25502

Log:
cosmetics: Remove trailing whitespace.


Modified:
   trunk/liba52/compare.c

Modified: trunk/liba52/compare.c
==============================================================================
--- trunk/liba52/compare.c	(original)
+++ trunk/liba52/compare.c	Sat Dec 22 18:10:09 2007
@@ -10,25 +10,25 @@ int main(int argc, char **argv)
 {
 	FILE *f0, *f1;
 	int dif=0;
-	
-	if(argc!=3) 
+
+	if(argc!=3)
 	{
 		printf("compare <file1> <file2>\n");
 		exit(2);
 	}
-	
+
 	f0= fopen(argv[1], "rb");
 	f1= fopen(argv[2], "rb");
-	
+
 	for(;;)
 	{
 		short c0;
 		short c1;
 		int d;
-		
+
 		int e0= fread(&c0, 2, 1, f0);
 		int e1= fread(&c1, 2, 1, f1);
-		
+
 		d=c0-c1;
 		if(e0==0 && e1==0) break;
 		if(e0==0 || e1==0)
@@ -36,20 +36,20 @@ int main(int argc, char **argv)
 			printf("FATAL error, files have different size!\n");
 			exit(1);
 		}
-		
+
 		if(d<0) d=-d; // ABS
 		if(d>1)
 		{
 			printf("FATAL error, too large a difference found (%d)!\n", d);
 			exit(1);
 		}
-		
+
 		if(d) dif++;
 	}
-	
+
 	fclose(f0);
 	fclose(f1);
-	
+
 	printf("%d (+/-1)differences found\n", dif);
 	exit(0);
 }



More information about the MPlayer-cvslog mailing list