Run Nindent on com32/lib/asprintf.c
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:22 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:22 +0000 (15:10 -0700)
Automatically reformat com32/lib/asprintf.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>
com32/lib/asprintf.c

index 6b1b4ff..ef5b4b2 100644 (file)
@@ -8,23 +8,23 @@
 
 int asprintf(char **bufp, const char *format, ...)
 {
-  va_list ap, ap1;
-  int rv;
-  int bytes;
-  char *p;
+    va_list ap, ap1;
+    int rv;
+    int bytes;
+    char *p;
 
-  va_start(ap, format);
-  va_copy(ap1, ap);
+    va_start(ap, format);
+    va_copy(ap1, ap);
 
-  bytes = vsnprintf(NULL, 0, format, ap1) + 1;
-  va_end(ap1);
+    bytes = vsnprintf(NULL, 0, format, ap1) + 1;
+    va_end(ap1);
 
-  *bufp = p = malloc(bytes);
-  if ( !p )
-    return -1;
+    *bufp = p = malloc(bytes);
+    if (!p)
+       return -1;
 
-  rv = vsnprintf(p, bytes, format, ap);
-  va_end(ap);
+    rv = vsnprintf(p, bytes, format, ap);
+    va_end(ap);
 
-  return rv;
+    return rv;
 }