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

index 910e7d9..a1215a3 100644 (file)
@@ -8,18 +8,18 @@
 
 int vasprintf(char **bufp, const char *format, va_list ap)
 {
-  va_list ap1;
-  int bytes;
-  char *p;
+    va_list ap1;
+    int bytes;
+    char *p;
 
-  va_copy(ap1, ap);
+    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;
 
-  return vsnprintf(p, bytes, format, ap);
+    return vsnprintf(p, bytes, format, ap);
 }