From: H. Peter Anvin Date: Fri, 29 May 2009 22:10:23 +0000 (-0700) Subject: Run Nindent on com32/lib/fgetc.c X-Git-Tag: syslinux-3.83-pre2~339 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=465b4a9d1732f39e88f96705dc64c2c40e5353f3;p=platform%2Fupstream%2Fsyslinux.git Run Nindent on com32/lib/fgetc.c Automatically reformat com32/lib/fgetc.c using Nindent. Do this for all files except HDT, gPXE and externally maintained libraries (zlib, tinyjpeg, libpng). Signed-off-by: H. Peter Anvin --- diff --git a/com32/lib/fgetc.c b/com32/lib/fgetc.c index 5aa6f76..b48e147 100644 --- a/com32/lib/fgetc.c +++ b/com32/lib/fgetc.c @@ -11,9 +11,9 @@ #include #include -int fgetc(FILE *f) +int fgetc(FILE * f) { - unsigned char ch; + unsigned char ch; - return (_fread(&ch, 1, f) == 1) ? (int)ch : EOF; + return (_fread(&ch, 1, f) == 1) ? (int)ch : EOF; }