(meta_flags, meta_type): Change sentinel name to NULL to match the

other symbol tables.
This commit is contained in:
Markus Armbruster 2005-10-29 16:40:17 +00:00
parent ae81dade53
commit 9f038ff7a5

View file

@ -523,7 +523,7 @@ struct symbol ship_chr_flags[] = {
{M_OILER, "oiler"}, {M_OILER, "oiler"},
{M_SUPPLY, "supply"}, {M_SUPPLY, "supply"},
{M_ANTIMISSILE, "anti-missile"}, {M_ANTIMISSILE, "anti-missile"},
{0, 0} {0, NULL}
}; };
struct symbol land_chr_flags[] = { struct symbol land_chr_flags[] = {
@ -540,7 +540,7 @@ struct symbol land_chr_flags[] = {
{L_SPY, "spy"}, {L_SPY, "spy"},
{L_TRAIN, "train"}, {L_TRAIN, "train"},
{L_HEAVY, "heavy"}, {L_HEAVY, "heavy"},
{0, 0} {0, NULL}
}; };
struct symbol plane_chr_flags[] = { struct symbol plane_chr_flags[] = {
@ -565,12 +565,12 @@ struct symbol plane_chr_flags[] = {
{P_MINE, "mine"}, {P_MINE, "mine"},
{P_SWEEP, "sweep"}, {P_SWEEP, "sweep"},
{P_MAR, "marine"}, {P_MAR, "marine"},
{0, 0} {0, NULL}
}; };
struct symbol nuke_chr_flags[] = { struct symbol nuke_chr_flags[] = {
{N_NEUT, "neutron"}, {N_NEUT, "neutron"},
{0, 0} {0, NULL}
}; };
struct castr mdchr_ca[] = { struct castr mdchr_ca[] = {
@ -586,7 +586,7 @@ struct symbol meta_flags[] = {
{NSC_DEITY, "DEITY"}, {NSC_DEITY, "DEITY"},
{NSC_EXTRA, "EXTRA"}, {NSC_EXTRA, "EXTRA"},
{NSC_CONST, "CONST"}, {NSC_CONST, "CONST"},
{0, ""} {0, NULL}
}; };
struct symbol meta_type[] = { struct symbol meta_type[] = {
@ -604,5 +604,5 @@ struct symbol meta_type[] = {
{NSC_TIME, "t"}, {NSC_TIME, "t"},
{NSC_FLOAT, "g"}, {NSC_FLOAT, "g"},
{NSC_STRINGY,"c"}, {NSC_STRINGY,"c"},
{0 ,""} {NSC_NOTYPE, NULL}
}; };