diff options
Diffstat (limited to 'code/old_demos')
| -rw-r--r-- | code/old_demos/demo002.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/old_demos/demo002.odin b/code/old_demos/demo002.odin index b9923f37a..ddb38c1e6 100644 --- a/code/old_demos/demo002.odin +++ b/code/old_demos/demo002.odin @@ -120,7 +120,7 @@ variadic_procedures :: proc() { print_prefix_f32s("a"); nl() print_prefix_f32s("b", 1); nl() - print_prefix_f32s("c", 1, 2, 3); nl() +7 print_prefix_f32s("c", 1, 2, 3); nl() // Internally, the variadic procedures get allocated to an array on the stack, // and this array is passed a slice |