From: Ben Pfaff Date: Fri, 12 Jun 2009 03:11:55 +0000 (-0700) Subject: Drop call to deleted function value_cnt_from_width (from debug-only code). X-Git-Tag: build37~72 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=1ad12f5d87334ebb73b40e61b8e2663821447212 Drop call to deleted function value_cnt_from_width (from debug-only code). Thanks to Jason for pointing out the problem. --- 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)); } }