From: H. Peter Anvin Date: Fri, 29 May 2009 22:10:24 +0000 (-0700) Subject: Run Nindent on com32/lib/puts.c X-Git-Tag: syslinux-3.83-pre2~300 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7cd621509563f054aa79028aec9cd72b2e0d04c;p=platform%2Fupstream%2Fsyslinux.git Run Nindent on com32/lib/puts.c Automatically reformat com32/lib/puts.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/puts.c b/com32/lib/puts.c index ecebf27..6028543 100644 --- a/com32/lib/puts.c +++ b/com32/lib/puts.c @@ -6,8 +6,8 @@ int puts(const char *s) { - if ( fputs(s, stdout) < 0 ) - return -1; + if (fputs(s, stdout) < 0) + return -1; - return _fwrite("\n", 1, stdout); + return _fwrite("\n", 1, stdout); }