summaryrefslogtreecommitdiff
path: root/tests/functions/test_varargs.zc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functions/test_varargs.zc')
-rw-r--r--tests/functions/test_varargs.zc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functions/test_varargs.zc b/tests/functions/test_varargs.zc
index b05e168..9b004db 100644
--- a/tests/functions/test_varargs.zc
+++ b/tests/functions/test_varargs.zc
@@ -4,7 +4,7 @@ test "test_varargs" {
println "Testing Varargs...";
printf(" Direct Printf: %d, %f, %s\n", 42, 3.14, "Hello");
- var buf = malloc(100);
+ let buf = malloc(100);
sprintf(buf, "Formatted: %d", 123);
println " {buf}";
}