From: H. Peter Anvin Date: Fri, 29 May 2009 22:10:21 +0000 (-0700) Subject: Run Nindent on com32/include/colortbl.h X-Git-Tag: syslinux-3.83-pre2~393 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2304d4d42f987dfd657a040f6d818da47dc7c4a5;p=platform%2Fupstream%2Fsyslinux.git Run Nindent on com32/include/colortbl.h 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 --- diff --git a/com32/include/colortbl.h b/com32/include/colortbl.h index fb5196c..e9f0a12 100644 --- a/com32/include/colortbl.h +++ b/com32/include/colortbl.h @@ -33,18 +33,18 @@ /* 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;