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