Run Nindent on com32/lib/fread2.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/fread2.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/fread2.c

index 9e5ac81..0062040 100644 (file)
@@ -7,7 +7,7 @@
 #define __NO_FREAD_FWRITE_INLINES
 #include <stdio.h>
 
-size_t fread(void *ptr, size_t size, size_t nmemb, FILE *f)
+size_t fread(void *ptr, size_t size, size_t nmemb, FILE * f)
 {
-  return _fread(ptr, size*nmemb, f)/size;
+    return _fread(ptr, size * nmemb, f) / size;
 }