diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:24 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:24 -0700 |
| commit | d4e98aece52068944cd935571aafe69f3ecbf3fa (patch) | |
| tree | b13fbdab92f74a0d7edf6d5cdcf161e23d69f4f1 /com32/lib/snprintf.c | |
| parent | 37c7538c82d3ec865f628e4e47214eda5bca352d (diff) | |
| download | syslinux-d4e98aece52068944cd935571aafe69f3ecbf3fa.tar.gz | |
Run Nindent on com32/lib/snprintf.c
Automatically reformat com32/lib/snprintf.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/snprintf.c')
| -rw-r--r-- | com32/lib/snprintf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/com32/lib/snprintf.c b/com32/lib/snprintf.c index c642851b..304bab4d 100644 --- a/com32/lib/snprintf.c +++ b/com32/lib/snprintf.c @@ -6,11 +6,11 @@ int snprintf(char *buffer, size_t n, const char *format, ...) { - va_list ap; - int rv; + va_list ap; + int rv; - va_start(ap, format); - rv = vsnprintf(buffer, n, format, ap); - va_end(ap); - return rv; + va_start(ap, format); + rv = vsnprintf(buffer, n, format, ap); + va_end(ap); + return rv; } |
