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

index 82ec832..4d706e1 100644 (file)
@@ -7,7 +7,7 @@
 #define __NO_FREAD_FWRITE_INLINES
 #include <stdio.h>
 
-size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *f)
+size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE * f)
 {
-  return _fwrite(ptr, size*nmemb, f)/size;
+    return _fwrite(ptr, size * nmemb, f) / size;
 }