diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-01-10 13:03:47 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-01-10 13:03:47 -0800 |
commit | 393a9402b36c9b1ef866a7230e0e4e46781a1a09 (patch) | |
tree | 6b7b09e629b13f44b709bd2e3c175e1c7da54459 | |
parent | c1a51d8ec6bbc7ff9105814d9bce6dae6ea2e005 (diff) | |
download | syslinux.git-393a9402b36c9b1ef866a7230e0e4e46781a1a09.tar.gz syslinux.git-393a9402b36c9b1ef866a7230e0e4e46781a1a09.tar.xz syslinux.git-393a9402b36c9b1ef866a7230e0e4e46781a1a09.zip |
com32/lib: fix inappropriate & in sys/colortable.c
The & is incorrect... not actively harmful, but generates a warning.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r-- | com32/lib/sys/colortable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/lib/sys/colortable.c b/com32/lib/sys/colortable.c index df6d9782..ab1c4246 100644 --- a/com32/lib/sys/colortable.c +++ b/com32/lib/sys/colortable.c @@ -4,6 +4,6 @@ static struct color_table default_color_table[] = { {"default", "0", 0xffffffff, 0x00000000, SHADOW_NORMAL} }; -struct color_table *console_color_table = &default_color_table; +struct color_table *console_color_table = default_color_table; int console_color_table_size = (sizeof default_color_table / sizeof(struct color_table)); |