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

index fb5196c..e9f0a12 100644 (file)
 
 /* Note: vesacon relies on the encoding of these numbers */
 enum color_table_shadow {
-  SHADOW_NONE   = 0,
-  SHADOW_ALL    = 1,
-  SHADOW_NORMAL         = 2,
-  SHADOW_REVERSE = 3,
+    SHADOW_NONE = 0,
+    SHADOW_ALL = 1,
+    SHADOW_NORMAL = 2,
+    SHADOW_REVERSE = 3,
 };
 
 struct color_table {
-  const char *name;            /* Attribute name (used for customization) */
-  const char *ansi;            /* ANSI attribute */
-  unsigned int argb_fg;                /* ARGB for foreground */
-  unsigned int argb_bg;                /* ARGB for background */
-  enum color_table_shadow shadow; /* Shadow mode */
+    const char *name;          /* Attribute name (used for customization) */
+    const char *ansi;          /* ANSI attribute */
+    unsigned int argb_fg;      /* ARGB for foreground */
+    unsigned int argb_bg;      /* ARGB for background */
+    enum color_table_shadow shadow;    /* Shadow mode */
 };
 
 extern struct color_table *console_color_table;