From edca3ad39439d027418905d73af81c5e391e4bb7 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Fri, 24 Nov 2023 03:43:15 -0500 Subject: [PATCH] Fix ARM Build --- launcher/src/bootstrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/bootstrap.c b/launcher/src/bootstrap.c index 18eadfc..7027724 100644 --- a/launcher/src/bootstrap.c +++ b/launcher/src/bootstrap.c @@ -233,7 +233,7 @@ void pre_bootstrap(int argc, char *argv[]) { #ifndef USE_QEMU long page_size = sysconf(_SC_PAGESIZE); if (page_size != REQUIRED_PAGE_SIZE) { - ERR("Invalid page size! A page size of %ld bytes is required, but the system size is %ld bytes.", REQUIRED_PAGE_SIZE, page_size); + ERR("Invalid page size! A page size of %ld bytes is required, but the system size is %ld bytes.", (long) REQUIRED_PAGE_SIZE, page_size); } #endif