From 742cc47bfbe67806f80bf4e821476b5efff9a9f6 Mon Sep 17 00:00:00 2001 From: Mel Date: Fri, 14 Mar 2025 16:43:08 +0100 Subject: Add compound literal casts to common functions (this isn't C++) Signed-off-by: Mel --- boot/catboot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'boot/catboot.c') 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 \n"); -- cgit 1.4.1