change error message according to discussion

This commit is contained in:
Sunrin SHIMURA (keen) 2015-01-25 06:37:09 +00:00
parent 794ab892c5
commit 6ee0fd2852
1 changed files with 1 additions and 1 deletions

View File

@ -562,7 +562,7 @@ analyze_quote(analyze_state *state, pic_value obj)
#define ARGC_ASSERT_GE(n, name) do { \ #define ARGC_ASSERT_GE(n, name) do { \
if (pic_length(pic, obj) < (n) + 1) { \ if (pic_length(pic, obj) < (n) + 1) { \
pic_errorf(pic, \ pic_errorf(pic, \
#name ": wrong number of arguments (%d for equal to or more than %d)", \ #name ": wrong number of arguments (%d for at least %d)", \
pic_length(pic, obj) - 1, \ pic_length(pic, obj) - 1, \
n); \ n); \
} \ } \