X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Foutput%2Ftable-casereader.c;h=5d5154ef40c691eb871ef548b91e6bcef2572d7f;hb=refs%2Fbuilds%2F20131116032752%2Fpspp;hp=fa7498c849ac4dd4daced36a956ffc725362d078;hpb=81579d9e9f994fb2908f50af41c3eb033d216e58;p=pspp diff --git a/src/output/table-casereader.c b/src/output/table-casereader.c index fa7498c849..5d5154ef40 100644 --- a/src/output/table-casereader.c +++ b/src/output/table-casereader.c @@ -38,7 +38,7 @@ static const struct table_class table_casereader_class; static struct table_casereader * table_casereader_cast (const struct table *table) { - assert (table->class == &table_casereader_class); + assert (table->klass == &table_casereader_class); return UP_CAST (table, struct table_casereader, table); } @@ -142,7 +142,10 @@ table_casereader_get_rule (const struct table *t, enum table_axis axis, int x UNUSED, int y) { struct table_casereader *tc = table_casereader_cast (t); - return axis == TABLE_VERT && tc->heading != NULL && y == 1 ? TAL_1 : TAL_0; + if (axis == TABLE_VERT) + return tc->heading != NULL && y == 1 ? TAL_1 : TAL_0; + else + return TAL_GAP; } static const struct table_class table_casereader_class =