Commit 61d1ee86 authored by Eric Andersen's avatar Eric Andersen
Browse files

Fix genext2fs so it will run on system where char is unsigned

parent 74a189fd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2137,7 +2137,7 @@ diff -urN genext2fs-1.3.orig/genext2fs.c genext2fs-1.3/genext2fs.c
 	filesystem *fs;
 	int i;
-	int c;
+	char c;
+	int c;
+	struct stat sb;
+	FILE *devtable = NULL;