From: Eric Andersen Date: Fri, 10 Jan 2003 14:18:00 +0000 (-0000) Subject: Fix genext2fs so it will run on system where char is unsigned X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=61d1ee8615c887269b2964fe1089e4eb328c5b32;p=buildroot.git Fix genext2fs so it will run on system where char is unsigned --- diff --git a/sources/genext2fs.patch b/sources/genext2fs.patch index 87181e1670..ceef18b939 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;