X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcasereader-filter.c;h=a5a2dd5476d52ab76ee89ebbfb4f45f60a477521;hb=1b62b2fae1214cee4bacf0cf8b9aea3a9723574e;hp=15fa4a5e6701605ec107fe43a599fab71d48f043;hpb=81579d9e9f994fb2908f50af41c3eb033d216e58;p=pspp diff --git a/src/data/casereader-filter.c b/src/data/casereader-filter.c index 15fa4a5e67..a5a2dd5476 100644 --- a/src/data/casereader-filter.c +++ b/src/data/casereader-filter.c @@ -266,7 +266,7 @@ static bool casereader_filter_missing_destroy (void *); is destroyed. If N_MISSING is non-null, then after reading, it will be filled - with the totla number of dropped cases. + with the total number of dropped cases. After this function is called, READER must not ever again be referenced directly. It will be destroyed automatically @@ -310,7 +310,7 @@ casereader_filter_missing_include (const struct ccase *c, void *cfm_) const union value *value = case_data (c, var); if (var_is_value_missing (var, value, cfm->class)) { - if ( cfm->n_missing ) + if (cfm->n_missing) (*cfm->n_missing)++; return false; }