From: John Darrington Date: Sat, 29 Apr 2006 03:12:03 +0000 (+0000) Subject: Removed unused variable (of undefined type) which prevented compilation without optim... X-Git-Tag: v0.6.0~924 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1ed7e6b472a6fa7feb710ee3ca0472c9a024e6f;p=pspp-builds.git Removed unused variable (of undefined type) which prevented compilation without optimisation. --- diff --git a/src/math/ChangeLog b/src/math/ChangeLog index 4ace1080..0c834cb0 100644 --- a/src/math/ChangeLog +++ b/src/math/ChangeLog @@ -1,3 +1,7 @@ +Sat Apr 29 11:09:33 WST 2006 John Darrington + + * removed unused variable. + Sat Apr 15 18:01:22 2006 Ben Pfaff * factor-stats.c (metrics_postcalc): Add casts to fix warnings. diff --git a/src/math/sort.c b/src/math/sort.c index 8b06867f..9725da80 100644 --- a/src/math/sort.c +++ b/src/math/sort.c @@ -304,8 +304,6 @@ struct initial_run_state int okay; /* Zero if an error has been encountered. */ }; -static const struct case_sink_class sort_sink_class; - static bool destroy_initial_run_state (struct initial_run_state *); static void process_case (struct initial_run_state *, const struct ccase *, size_t);