Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vladak committed Mar 9, 2024
1 parent 16fa4ba commit f64c4c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/variable-argument-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ We already saw in [the numbers module](/modules/numbers.md) that you need to
match the type of arguments with the type of conversion specifiers. Why does
the following work even when built in 32 bits? We are using an argument of type
`char`, which is 1 byte, but the `printf` functions assumes through the `%d`
specifier there are 4 bytes on stack (x32) or in the register (x64). Yes it
specifier there are 4 bytes on stack (x32) or in the register (x64). Yet it
works. Why?
```C
Expand Down

0 comments on commit f64c4c7

Please sign in to comment.