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

@ -627,8 +627,8 @@ void main(void)
for (int i = 0 ; i < NUM_VOLUMES ; i++) {
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);
}
while(button_get(true) != SYS_USB_CONNECTED) {};
}