bootloaders: Correct formatting of 'no parition found' table dump

Change-Id: I0eb48a0a40d317f9b47b181e0a31bef7ffde1e15
This commit is contained in:
Solomon Peachy 2025-11-24 21:16:43 -05:00
parent 7511d7e514
commit 936482abb5
6 changed files with 12 additions and 12 deletions

View file

@ -121,8 +121,8 @@ void error(int errortype, int error, bool shutdown)
struct partinfo pinfo;
disk_partinfo(i, &pinfo);
if (pinfo.type)
printf("P%d T%02x S%08lx",
i, pinfo.type, pinfo.size);
printf("P%d T%02x S%llx",
i, pinfo.type, (unsigned long long)pinfo.size);
}
#endif
break;