(verify_row): NSC_BITS implies symbol_ca. Oops if violated.
This commit is contained in:
parent
afd93afbd3
commit
b121b58e91
1 changed files with 2 additions and 8 deletions
|
@ -76,14 +76,8 @@ verify_row(int type, int row)
|
|||
ca_sym = ef_cadef(ca[i].ca_table);
|
||||
if (ca[i].ca_flags & NSC_BITS) {
|
||||
/* symbol set */
|
||||
if (ca_sym != symbol_ca) {
|
||||
fprintf(stderr,
|
||||
"Unable to verify symbol set as the "
|
||||
"table %s is not created as symbol table "
|
||||
"for table %s row %d field %s\n",
|
||||
ef_nameof(ca[i].ca_table), ef_nameof(type),
|
||||
row + 1, ca[i].ca_name
|
||||
);
|
||||
if (CANT_HAPPEN(ca_sym != symbol_ca)) {
|
||||
ret_val = -1;
|
||||
continue;
|
||||
}
|
||||
for (k = 0; k < (int)sizeof(long) * 8; k++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue