diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:27 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:27 -0700 |
commit | b3b131b3209e6405e39c8a1089ed60cba1a0593a (patch) | |
tree | 697b6ce39cefb73b6e438fc2f27f700dd96ca6ad | |
parent | 0cf1ecc2f296081b338bda9978fb47928a30ae52 (diff) | |
download | syslinux-b3b131b3209e6405e39c8a1089ed60cba1a0593a.tar.gz syslinux-b3b131b3209e6405e39c8a1089ed60cba1a0593a.tar.xz syslinux-b3b131b3209e6405e39c8a1089ed60cba1a0593a.zip |
Run Nindent on com32/lib/vsprintf.c
Automatically reformat com32/lib/vsprintf.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>
-rw-r--r-- | com32/lib/vsprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/lib/vsprintf.c b/com32/lib/vsprintf.c index 4a6100e7..8df62130 100644 --- a/com32/lib/vsprintf.c +++ b/com32/lib/vsprintf.c @@ -7,5 +7,5 @@ int vsprintf(char *buffer, const char *format, va_list ap) { - return vsnprintf(buffer, ~(size_t)0, format, ap); + return vsnprintf(buffer, ~(size_t) 0, format, ap); } |