Browse Source

core: fix the fixup_spve_uint() and fixup_spve_str()

- error introduced with the new design in SR of fixup functions set
Daniel-Constantin Mierla 15 years ago
parent
commit
f47abc0444
1 changed files with 2 additions and 2 deletions
  1. 2 2
      mod_fix.c

+ 2 - 2
mod_fix.c

@@ -233,6 +233,6 @@ FIXUP_F2FP_T(igp_pvar_pvar, 1, 3, 1, FPARAM_INT|FPARAM_PVS, FPARAM_PVS)
 
 
 FIXUP_F_SPVE_T(spve_spve, 1, 2, 2, 0)
-FIXUP_F_SPVE_T(spve_uint, 1, 2, 2, FPARAM_INT)
-FIXUP_F_SPVE_T(spve_str, 1, 2, 2, FPARAM_STR)
+FIXUP_F_SPVE_T(spve_uint, 1, 2, 1, FPARAM_INT)
+FIXUP_F_SPVE_T(spve_str, 1, 2, 1, FPARAM_STR)
 FIXUP_F_SPVE_T(spve_null, 1, 1, 1, 0)