From 1ad12f5d87334ebb73b40e61b8e2663821447212 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 11 Jun 2009 20:11:55 -0700 Subject: [PATCH] Drop call to deleted function value_cnt_from_width (from debug-only code). Thanks to Jason for pointing out the problem. --- src/ui/gui/psppire-dict.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ui/gui/psppire-dict.c b/src/ui/gui/psppire-dict.c index 8ff92a48..d6d278f5 100644 --- a/src/ui/gui/psppire-dict.c +++ b/src/ui/gui/psppire-dict.c @@ -859,11 +859,10 @@ psppire_dict_dump (const PsppireDict *dict) { const struct variable *v = psppire_dict_get_variable (dict, i); int di = var_get_dict_index (v); - g_print ("\"%s\" idx=%d, fv=%d, size=%d\n", + g_print ("\"%s\" idx=%d, fv=%d\n", var_get_name(v), di, - var_get_case_index(v), - value_cnt_from_width(var_get_width(v))); + var_get_case_index(v)); } } -- 2.30.2