Make the missing value code do more work, so that its callers can do
[pspp-builds.git] / src / language / xforms / recode.c
index 4fdb57194b87aefc3677cceac4a6cc6a26549d7e..01f3bf765428038e9e964ee55e7ebe79c8b07fed 100644 (file)
@@ -554,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;