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

2012.11.x
Eric Andersen 2003-01-10 14:18:00 +00:00
parent 74a189fdc9
commit 61d1ee8615
1 changed files with 1 additions and 1 deletions

View File

@ -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;