Fix ARM Build
Build / build (push) Failing after 3h12m6s Details

This commit is contained in:
TheBrokenRail 2023-11-24 03:43:15 -05:00
parent 1aed33a48b
commit edca3ad394
1 changed files with 1 additions and 1 deletions

View File

@ -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