1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-29 22:40:34 +02:00

Eliminate use of deprecated 'SCM_WTA_DISPATCH_2' in numbers.c.

* libguile/numbers.c (scm_gcd): Use 'scm_wta_dispatch_2' not
  'SCM_WTA_DISPATCH_2'.
This commit is contained in:
Mark H Weaver 2013-08-08 02:19:46 -04:00
parent 789dd40b8b
commit 056e3470c4

View file

@ -4175,7 +4175,7 @@ scm_gcd (SCM x, SCM y)
else if (SCM_REALP (y) && scm_is_integer (y))
goto handle_inexacts;
else
SCM_WTA_DISPATCH_2 (g_gcd, x, y, SCM_ARG2, s_gcd);
return scm_wta_dispatch_2 (g_gcd, x, y, SCM_ARG2, s_gcd);
}
else if (SCM_REALP (x) && scm_is_integer (x))
{