page-first-line: Make the Text column expand as the window is resized.
[pspp] / src / output / tab.c
index bc4ac534d0a30bb8d9ece455c79d1c5f414a063c..5bde1b7c418c57d05bdbb78d42dae37ec32e09ef 100644 (file)
@@ -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);
 }