mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-08-29 01:24:51 +02:00
GCC14: warning: missing braces around initializer
GCC14 -Wall cleanup series [-Wmissing-braces]
This commit is contained in:
committed by
Tim Edwards
parent
3300f45a22
commit
967b41343b
+9
-9
@@ -408,15 +408,15 @@ PlotColorVersTechLine(sectionName, argc, argv)
|
||||
{
|
||||
VersatecStyle *new;
|
||||
static struct { char *l_str; int l_color; } colors[] = {
|
||||
"black", BLACK,
|
||||
"cyan", CYAN,
|
||||
"magenta", MAGENTA,
|
||||
"yellow", YELLOW,
|
||||
"K", BLACK,
|
||||
"C", CYAN,
|
||||
"M", MAGENTA,
|
||||
"Y", YELLOW,
|
||||
0
|
||||
{"black", BLACK},
|
||||
{"cyan", CYAN},
|
||||
{"magenta", MAGENTA},
|
||||
{"yellow", YELLOW},
|
||||
{"K", BLACK},
|
||||
{"C", CYAN},
|
||||
{"M", MAGENTA},
|
||||
{"Y", YELLOW},
|
||||
{0}
|
||||
};
|
||||
int i;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user