aboutsummaryrefslogtreecommitdiff
path: root/ell.c
diff options
context:
space:
mode:
Diffstat (limited to 'ell.c')
-rw-r--r--ell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ell.c b/ell.c
index 94b5619..c386860 100644
--- a/ell.c
+++ b/ell.c
@@ -1191,7 +1191,7 @@ ell_defn (ell_fn_throw) {
struct ell_v *message = args;
if (!message || message->type != ELL_STRING)
return ell_error (ell, "first argument must be string");
- return ell_error (ell, message->string);
+ return ell_error (ell, "%s", message->string);
}
ell_defn (ell_fn_plus) {