Run Nindent on core/hello.c
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:20:14 +0000 (15:20 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:20:14 +0000 (15:20 -0700)
Automatically reformat core/hello.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>
core/hello.c

index 6c12c73..ec2f5ff 100644 (file)
@@ -3,25 +3,25 @@
 
 void myputchar(int c)
 {
-  static com32sys_t ireg;
-  static uint16_t *vram = 0xb8000;
+    static com32sys_t ireg;
+    static uint16_t *vram = 0xb8000;
 
-  ireg.eax.b[1] = 0x02;
-  ireg.edx.b[0] = c;
-  core_intcall(0x21, &ireg, NULL);
+    ireg.eax.b[1] = 0x02;
+    ireg.edx.b[0] = c;
+    core_intcall(0x21, &ireg, NULL);
 
-  *vram++ = c + 0x1f00;
+    *vram++ = c + 0x1f00;
 }
 
 void myputs(const char *str)
 {
-  while (*str)
-    myputchar(*str++);
+    while (*str)
+       myputchar(*str++);
 }
 
 void hello(void)
 {
-  static char hello_str[] = "Hello, World!  (hello.c)\r\n";
+    static char hello_str[] = "Hello, World!  (hello.c)\r\n";
 
-  myputs(hello_str);
+    myputs(hello_str);
 }