summaryrefslogtreecommitdiff
path: root/sources/genext2fs.patch
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-01-10 14:18:00 +0000
committerEric Andersen <andersen@codepoet.org>2003-01-10 14:18:00 +0000
commit61d1ee8615c887269b2964fe1089e4eb328c5b32 (patch)
treed158a458f71f497bbb5c627c985819705a6ea2d0 /sources/genext2fs.patch
parent74a189fdc938fb5cae7e09b01d63036a08419245 (diff)
Fix genext2fs so it will run on system where char is unsigned
Diffstat (limited to 'sources/genext2fs.patch')
-rw-r--r--sources/genext2fs.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/genext2fs.patch b/sources/genext2fs.patch
index 87181e167..ceef18b93 100644
--- a/sources/genext2fs.patch
+++ b/sources/genext2fs.patch
@@ -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;