From: H. Peter Anvin Date: Fri, 29 May 2009 22:10:23 +0000 (-0700) Subject: Run Nindent on com32/lib/fputc.c X-Git-Tag: syslinux-3.83-pre2~334 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c0b449024e92d7cb0daeb9f6ccec71b040d6edb2;p=platform%2Fupstream%2Fsyslinux.git 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 --- 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; }