mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 12:20:26 +02:00
(scm_resolv_error): don't put bad_value in the format string
value arguments when calling scm_error since none of the format strings actually have escapes for the values.
This commit is contained in:
parent
421dccbcef
commit
c83d179009
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ static void scm_resolv_error (const char *subr, SCM bad_value)
|
|||
#ifdef HAVE_HSTRERROR
|
||||
errmsg = (const char *) hstrerror (h_errno);
|
||||
#endif
|
||||
scm_error (key, subr, errmsg, scm_cons (bad_value, SCM_EOL), SCM_EOL);
|
||||
scm_error (key, subr, errmsg, SCM_BOOL_F, SCM_EOL);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue