summaryrefslogtreecommitdiff
path: root/com32/lib/fputs.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-05-29 15:10:23 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-05-29 15:10:23 -0700
commit09a8a7886b5f281cf03077b8feb05af5eadc923a (patch)
tree3cd1a843078bec46be67fa568df2433f8a5fd832 /com32/lib/fputs.c
parentc0b449024e92d7cb0daeb9f6ccec71b040d6edb2 (diff)
downloadsyslinux-09a8a7886b5f281cf03077b8feb05af5eadc923a.tar.gz
Run Nindent on com32/lib/fputs.c
Automatically reformat com32/lib/fputs.c using Nindent. Do this for all files except HDT, gPXE and externally maintained libraries (zlib, tinyjpeg, libpng). Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/lib/fputs.c')
-rw-r--r--com32/lib/fputs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/com32/lib/fputs.c b/com32/lib/fputs.c
index 4b68f968..84f0c89a 100644
--- a/com32/lib/fputs.c
+++ b/com32/lib/fputs.c
@@ -9,7 +9,7 @@
#include <stdio.h>
#include <string.h>
-int fputs(const char *s, FILE *file)
+int fputs(const char *s, FILE * file)
{
- return _fwrite(s, strlen(s), file);
+ return _fwrite(s, strlen(s), file);
}