ppcrcd/trunk/yaboot/file.c

sparky cvs at pld-linux.org
Mon Mar 6 10:35:03 CET 2006


Author: sparky
Date: Mon Mar  6 10:35:01 2006
New Revision: 7102

Modified:
   ppcrcd/trunk/yaboot/file.c
Log:
- corrected tabs


Modified: ppcrcd/trunk/yaboot/file.c
==============================================================================
--- ppcrcd/trunk/yaboot/file.c	(original)
+++ ppcrcd/trunk/yaboot/file.c	Mon Mar  6 10:35:01 2006
@@ -278,18 +278,18 @@
 			p->part_number, p->part_start, p->part_size );
 		if (partition == -1) {
 			file->fs = fs_open( file, dev_name, p, file_name );
-		if (file->fs == NULL || fserrorno != FILE_ERR_OK)
-			continue;
-		else {
-			partition = p->part_number;
-			goto done;
+			if (file->fs == NULL || fserrorno != FILE_ERR_OK)
+				continue;
+			else {
+				partition = p->part_number;
+				goto done;
+			}
 		}
-	}
-	if ((partition >= 0) && (partition == p->part_number))
-		found = p;
+		if ((partition >= 0) && (partition == p->part_number))
+			found = p;
 #if DEBUG
-	if (found)
-		prom_printf(" (match)\n");
+		if (found)
+			prom_printf(" (match)\n");
 #endif
 	}
 


More information about the pld-cvs-commit mailing list