From: H. Peter Anvin Date: Fri, 29 May 2009 22:10:23 +0000 (-0700) Subject: Run Nindent on com32/lib/creat.c X-Git-Tag: syslinux-3.83-pre2~344 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4aec82573ed23bc80c1561e6230eb2750a8212ac;p=platform%2Fupstream%2Fsyslinux.git Run Nindent on com32/lib/creat.c Automatically reformat com32/lib/creat.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/creat.c b/com32/lib/creat.c index 9bd2217..3b4dc61 100644 --- a/com32/lib/creat.c +++ b/com32/lib/creat.c @@ -8,5 +8,5 @@ int creat(const char *pathname, mode_t mode) { - return open(pathname, O_CREAT|O_WRONLY|O_TRUNC, mode); + return open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode); }