X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fxforms%2Frecode.c;h=01f3bf765428038e9e964ee55e7ebe79c8b07fed;hb=3f159627d3b80706e58a54be2431c3edbc5333dc;hp=54ae90ffb8b2e4cb7fb7ab56ff948be94567714e;hpb=338fb2a2e84df6427a2fdee6769421f57d5666d8;p=pspp-builds.git diff --git a/src/language/xforms/recode.c b/src/language/xforms/recode.c index 54ae90ff..01f3bf76 100644 --- a/src/language/xforms/recode.c +++ b/src/language/xforms/recode.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -555,7 +554,7 @@ find_src_numeric (struct recode_trns *trns, double value, struct variable *v) match = value == in->x.f; break; case MAP_MISSING: - match = var_is_num_user_missing (v, value); + match = var_is_num_missing (v, value, MV_USER); break; case MAP_RANGE: match = value >= in->x.f && value <= in->y.f;