about summary refs log tree commit diff
path: root/cccl.c
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2025-03-26 20:46:12 +0300
committerNakidai <nakidai@disroot.org>2025-03-26 20:46:12 +0300
commit7b94dd5d7f4b8604ed3af6499edde8286d9073c9 (patch)
treee92d274315e72d9047033d535cfa71a3de2f93a3 /cccl.c
parent6fa64679e24b2bef4aee49657df1b2f411b18392 (diff)
download3cl-7b94dd5d7f4b8604ed3af6499edde8286d9073c9.tar.gz
3cl-7b94dd5d7f4b8604ed3af6499edde8286d9073c9.zip
Make dump more flexible for streams
Diffstat (limited to 'cccl.c')
-rw-r--r--cccl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cccl.c b/cccl.c
index cd952d1..c574a87 100644
--- a/cccl.c
+++ b/cccl.c
@@ -17,5 +17,5 @@ void cccl(struct cccl_File file)
     struct cccl_Variables scope = {0};
     cccl_execute(parsed, &scope, 0);
     if (dump)
-        cccl_dump();
+        cccl_dump(stdout);
 }