X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable-select.c;h=00d0ee99318434ff1d357577105e0199541fadc9;hb=14be690de6bd259d26e710ad5363e106afde1e93;hp=dcc6b7de2af8c8a4ead62190a532fd96d8d83c56;hpb=81579d9e9f994fb2908f50af41c3eb033d216e58;p=pspp diff --git a/src/output/table-select.c b/src/output/table-select.c index dcc6b7de2a..00d0ee9931 100644 --- a/src/output/table-select.c +++ b/src/output/table-select.c @@ -35,7 +35,7 @@ static const struct table_class table_select_class; static struct table_select * table_select_cast (const struct table *table) { - assert (table->class == &table_select_class); + assert (table->klass == &table_select_class); return UP_CAST (table, struct table_select, table); } @@ -55,9 +55,9 @@ table_select (struct table *subtable, int rect[TABLE_N_AXES][2]) && rect[TABLE_VERT][1] == subtable->n[TABLE_VERT]) return subtable; - if (!table_is_shared (subtable) && subtable->class->select != NULL) + if (!table_is_shared (subtable) && subtable->klass->select != NULL) { - struct table *selected = subtable->class->select (subtable, rect); + struct table *selected = subtable->klass->select (subtable, rect); if (selected != NULL) return selected; }