aboutsummaryrefslogtreecommitdiff
path: root/builtin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'builtin.cpp')
-rw-r--r--builtin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin.cpp b/builtin.cpp
index 859d5e4..1096d7a 100644
--- a/builtin.cpp
+++ b/builtin.cpp
@@ -1355,6 +1355,6 @@ BUILTIN_PROC_DEF(vector_length) {
BUILTIN_PROC_DEF(display) {
ARGS_EXACTLY_ONE;
- printf("%s\n", args->car->ext_repr().c_str());
+ printf("%s", args->car->ext_repr().c_str());
return new UnspecObj();
}