diff options
| author | Mel <mel@rnrd.eu> | 2025-03-14 16:43:08 +0100 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2025-03-14 16:43:08 +0100 |
| commit | 742cc47bfbe67806f80bf4e821476b5efff9a9f6 (patch) | |
| tree | 3a68c4d4bf7de4b1648ad11444dfc8b00dcc1c04 /boot/catboot.c | |
| parent | da65d5ff18ff2fb598ac4cf25063b233b000d7b5 (diff) | |
| download | catskill-742cc47bfbe67806f80bf4e821476b5efff9a9f6.tar.zst catskill-742cc47bfbe67806f80bf4e821476b5efff9a9f6.zip | |
Add compound literal casts to common functions (this isn't C++)
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'boot/catboot.c')
| -rw-r--r-- | boot/catboot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/catboot.c b/boot/catboot.c index b36bb97..56aaeb6 100644 --- a/boot/catboot.c +++ b/boot/catboot.c @@ -39,8 +39,8 @@ read_file(const ascii* path) return file_data; } -integer -main(const integer argc, const ascii* argv[]) +int32 +main(const int32 argc, const ascii* argv[]) { if (argc != 2) { printf("usage: catboot <filename>\n"); |
