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

index 7c681fc..fca818b 100644 (file)
@@ -4,8 +4,7 @@
 
 #include <com32.h>
 
-int __cfarcall(uint16_t cs, uint16_t ip,
-              const void *stack, uint32_t stack_size)
+int __cfarcall(uint16_t cs, uint16_t ip, const void *stack, uint32_t stack_size)
 {
-  return __com32.cs_cfarcall((cs << 16)+ip, stack, stack_size);
+    return __com32.cs_cfarcall((cs << 16) + ip, stack, stack_size);
 }