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

index 9400222..12140e5 100644 (file)
 
 void syslinux_final_cleanup(uint16_t flags)
 {
-  static com32sys_t ireg;
+    static com32sys_t ireg;
 
-  ireg.eax.w[0] = 0x000c;
-  ireg.edx.w[0] = flags;
+    ireg.eax.w[0] = 0x000c;
+    ireg.edx.w[0] = flags;
 
-  __intcall(0x22, &ireg, NULL);
+    __intcall(0x22, &ireg, NULL);
 }