summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index a42e285..c989dbd 100644
--- a/src/main.c
+++ b/src/main.c
@@ -25,7 +25,7 @@ int main(int argc, char **argv)
err = hs_call(L, 0, 0);
if (err != 0) {
const char *err_str = lua_tostring(L, -1);
- printf("failed to run: %s\n", err_str);
+ printf("failed to run: \n%s\n", err_str);
}
lua_close(L);
return 0;