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:
parent
789dd40b8b
commit
056e3470c4
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue