diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:00:03 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:00:03 +0000 |
commit | 47c6b75ea980821737e8030190d24b9aa30e978d (patch) | |
tree | 94e1566e9a7bd7b8b4f3abfadde47faad8f45830 /libguile/error.c | |
parent | f5421cfc2a694b6c4eb9e035d583cc461994b4ce (diff) | |
download | guile-47c6b75ea980821737e8030190d24b9aa30e978d.tar.gz |
* *.[ch]: Replace SCM_VALIDATE_INT w/ SCM_VALIDATE_INUM for
better consistency with the names of other SCM_VALIDATE_ macros
and better conformance to guile naming policy.
Diffstat (limited to 'libguile/error.c')
-rw-r--r-- | libguile/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/error.c b/libguile/error.c index 0e53c4c5e..c0d97fe6f 100644 --- a/libguile/error.c +++ b/libguile/error.c @@ -119,7 +119,7 @@ GUILE_PROC (scm_strerror, "strerror", 1, 0, 0, "Returns the Unix error message corresponding to @var{errno}, an integer.") #define FUNC_NAME s_scm_strerror { - SCM_VALIDATE_INT(1,err); + SCM_VALIDATE_INUM(1,err); return scm_makfrom0str (strerror (SCM_INUM (err))); } #undef FUNC_NAME |