mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 21:10:27 +02:00
* error.c (scm_wta): coerce char* to intptr_t before int
assignment.
This commit is contained in:
parent
c952c7c062
commit
8ed5a245b3
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ scm_wta (SCM arg, const char *pos, const char *s_subr)
|
|||
else
|
||||
{
|
||||
/* numerical error code. */
|
||||
int error = (int) pos;
|
||||
int error = (intptr_t) pos;
|
||||
|
||||
switch (error)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue