X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Flevene.c;fp=src%2Fmath%2Flevene.c;h=920440103b4d5b33bcb6721746b1048591f61693;hb=e16d30a43af6ada7b8846f48a55eb3cb8f4e5f22;hp=86a32e7ab92a380763ececcc1984955eff768a10;hpb=6836cbca31d72c075de04e80d937b704fae20394;p=pspp-builds.git diff --git a/src/math/levene.c b/src/math/levene.c index 86a32e7a..92044010 100644 --- a/src/math/levene.c +++ b/src/math/levene.c @@ -187,11 +187,11 @@ static int levene_calc (const struct ccase *c, void *_l) { size_t i; - int warn = 0; + bool warn = false; struct levene_info *l = (struct levene_info *) _l; const union value *gv = case_data (c, l->v_indep->fv); struct group_statistics key; - double weight = dict_get_case_weight(default_dict,c,&warn); + double weight = dict_get_case_weight (default_dict, c, &warn); /* Skip the entire case if /MISSING=LISTWISE is set */ if ( l->missing == LEV_LISTWISE ) @@ -291,11 +291,11 @@ static int levene2_calc (const struct ccase *c, void *_l) { size_t i; - int warn = 0; + bool warn = false; struct levene_info *l = (struct levene_info *) _l; - double weight = dict_get_case_weight(default_dict,c,&warn); + double weight = dict_get_case_weight (default_dict, c, &warn); const union value *gv = case_data (c, l->v_indep->fv); struct group_statistics key;