Run Nindent on com32/include/inttypes.h
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/include/inttypes.h 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/include/inttypes.h

index e00fa63..b863126 100644 (file)
@@ -11,7 +11,7 @@
 
 static __inline__ intmax_t imaxabs(intmax_t __n)
 {
-  return (__n < (intmax_t)0) ? -__n : __n;
+    return (__n < (intmax_t) 0) ? -__n : __n;
 }
 
 __extern intmax_t strtoimax(const char *, char **, int);