Run Nindent on com32/menu/background.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/menu/background.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/menu/background.c

index fa03441..2be0ede 100644 (file)
@@ -18,9 +18,9 @@ const char *current_background = NULL;
 
 void set_background(const char *new_background)
 {
-  if (!current_background || !new_background ||
-      strcmp(current_background, new_background)) {
-    draw_background(new_background);
-    current_background = new_background;
-  }
+    if (!current_background || !new_background ||
+       strcmp(current_background, new_background)) {
+       draw_background(new_background);
+       current_background = new_background;
+    }
 }