Correct return types on boot

This commit is contained in:
Soreepeong 2022-03-31 23:29:37 +09:00
parent 0cf9b80172
commit 6da762dc3c
3 changed files with 5 additions and 5 deletions

View file

@ -90,7 +90,7 @@ int InitializeClrAndGetEntryPoint(
printf("Loading hostfxr... ");
if ((result = g_clr->load_hostfxr(&init_parameters)) != 0)
{
printf("\nError: Failed to load the `hostfxr` library (err=%d)\n", result);
printf("\nError: Failed to load the `hostfxr` library (err=0x%08x)\n", result);
return result;
}
printf("Done!\n");