mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
Fix genext2fs so it will run on system where char is unsigned
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user