From c0b449024e92d7cb0daeb9f6ccec71b040d6edb2 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/fputc.c Automatically reformat com32/lib/fputc.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/fputc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/com32/lib/fputc.c b/com32/lib/fputc.c index 61aff16..7a1bf0b 100644 --- a/com32/lib/fputc.c +++ b/com32/lib/fputc.c @@ -6,9 +6,9 @@ #include -int fputc(int c, FILE *f) +int fputc(int c, FILE * f) { - unsigned char ch = c; + unsigned char ch = c; - return _fwrite(&ch, 1, f) == 1 ? ch : EOF; + return _fwrite(&ch, 1, f) == 1 ? ch : EOF; } -- 2.7.4