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

index 044fa1a..8dc9fbe 100644 (file)
 
 __noreturn syslinux_run_default(void)
 {
-  static com32sys_t ireg;
+    static com32sys_t ireg;
 
-  ireg.eax.w[0] = 0x0004;
-  __intcall(0x22, &ireg, NULL);
+    ireg.eax.w[0] = 0x0004;
+    __intcall(0x22, &ireg, NULL);
 
-  /* Should not return even on failure */
-  for(;;);
+    /* Should not return even on failure */
+    for (;;) ;
 }