Add a new argument to casereader_create_filter_missing, which,
if non-null, receives the number of cases filtered out by the
new reader. Update all callers of this function.
is destroyed.
If N_MISSING is non-null, then after reading, it will be filled
- with the total number of dropped cases.
+ with the totla number of dropped cases.
After this function is called, READER must not ever again
be referenced directly. It will be destroyed automatically
cfm->var_cnt = var_cnt;
cfm->class = class;
cfm->n_missing = n_missing;
- if (n_missing)
- *n_missing = 0;
+ if (n_missing) *n_missing = 0;
return casereader_create_filter_func (reader,
casereader_filter_missing_include,
casereader_filter_missing_destroy,