From 465b4a9d1732f39e88f96705dc64c2c40e5353f3 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Fri, 29 May 2009 15:10:23 -0700 Subject: [PATCH] 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 --- com32/lib/fgetc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.7.4