From e5e4d2495994c51738e14dfc80dca4818c7e1203 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 30 Jan 2017 17:43:35 -0500 Subject: [PATCH] Remove errant period --- include/cyclone/runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cyclone/runtime.h b/include/cyclone/runtime.h index d65bc7b0..e3b4ac60 100644 --- a/include/cyclone/runtime.h +++ b/include/cyclone/runtime.h @@ -14,7 +14,7 @@ object l = Cyc_length(data, args); \ if (num_args > obj_obj2int(l)) { \ 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)); \ Cyc_rt_raise_msg(data, buf); \ } \