Remove errant period

This commit is contained in:
Justin Ethier 2017-01-30 17:43:35 -05:00
parent be542b745f
commit e5e4d24959

View file

@ -14,7 +14,7 @@
object l = Cyc_length(data, args); \ object l = Cyc_length(data, args); \
if (num_args > obj_obj2int(l)) { \ if (num_args > obj_obj2int(l)) { \
char buf[128]; \ char buf[128]; \
snprintf(buf, 127, "Expected %d arguments to %s but received %ld.", \ snprintf(buf, 127, "Expected %d arguments to %s but received %ld", \
num_args, fnc_name, obj_obj2int(l)); \ num_args, fnc_name, obj_obj2int(l)); \
Cyc_rt_raise_msg(data, buf); \ Cyc_rt_raise_msg(data, buf); \
} \ } \