X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Ffreq.c;h=952857479aed75f9f7e27e37b919fa383b70b0fb;hb=e6e91e018e8d6c278aff859be10f5ddfcc06dd6d;hp=ae35b8a7a1580ad873da25b62ffc2dc5bab95e22;hpb=f5c108becd49d78f4898cab11352291f5689d24e;p=pspp diff --git a/src/language/stats/freq.c b/src/language/stats/freq.c index ae35b8a7a1..952857479a 100644 --- a/src/language/stats/freq.c +++ b/src/language/stats/freq.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2006 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include #include @@ -32,16 +30,15 @@ compare_freq ( const void *_f1, const void *_f2, const void *_var) const struct freq *f2 = _f2; const struct variable *var = _var; - return compare_values (f1->value, f2->value, var_get_width (var) ); + return compare_values_short (f1->value, f2->value, var ); } unsigned int -hash_freq (const void *_f, const void *_var) +hash_freq (const void *_f, const void *var) { const struct freq *f = _f; - const struct variable *var = _var; - return hash_value (f->value, var_get_width (var)); + return hash_value_short (f->value, var); } /* Free function to be used on FR whose value parameter has been copied */