Reworked settings so as to use one large struct instead of lots of static
[pspp-builds.git] / src / data / sparse-cases.c
index 0a7b1c5c754a1270175e75c85916fa115574ba68..1f3fb092a12b77a0601cdce75717a4e87d883a24 100644 (file)
@@ -48,7 +48,7 @@ sparse_cases_create (size_t column_cnt)
   struct sparse_cases *sc = xmalloc (sizeof *sc);
   sc->column_cnt = column_cnt;
   sc->default_columns = NULL;
-  sc->max_memory_cases = get_workspace_cases (column_cnt);
+  sc->max_memory_cases = settings_get_workspace_cases (column_cnt);
   sc->memory = sparse_array_create (sizeof (struct ccase));
   sc->disk = NULL;
   sc->disk_cases = NULL;