From 537052b87eb0e221b86a94154ac08f06b0eed60e Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 15 Jul 2015 22:15:28 -0400 Subject: [PATCH] Reduced buffer size --- runtime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime.c b/runtime.c index 259271f4..6331cb0b 100644 --- a/runtime.c +++ b/runtime.c @@ -13,8 +13,8 @@ #define Cyc_check_num_args(fnc_name, num_args, args) { \ integer_type l = Cyc_length(args); \ if (num_args > l.value) { \ - char buf[256]; \ - snprintf(buf, 255, "Expected %d arguments but received %d.", num_args, l.value); \ + char buf[128]; \ + snprintf(buf, 127, "Expected %d arguments but received %d.", num_args, l.value); \ Cyc_rt_raise_msg(buf); \ } \ }