X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftab.c;h=5bde1b7c418c57d05bdbb78d42dae37ec32e09ef;hb=01e1f5874de57b945a4f1eb4cd0939b96c6a3a06;hp=bc4ac534d0a30bb8d9ece455c79d1c5f414a063c;hpb=3079a93f224dfc9d0fa8638ccba7a2faac900977;p=pspp diff --git a/src/output/tab.c b/src/output/tab.c index bc4ac534d0..5bde1b7c41 100644 --- a/src/output/tab.c +++ b/src/output/tab.c @@ -38,7 +38,6 @@ #include "output/table-provider.h" #include "output/text-item.h" -#include "gl/error.h" #include "gl/minmax.h" #include "gl/xalloc.h" @@ -767,6 +766,6 @@ static const struct table_class tab_table_class = struct tab_table * tab_cast (const struct table *table) { - assert (table->class == &tab_table_class); + assert (table->klass == &tab_table_class); return UP_CAST (table, struct tab_table, table); }