mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-06 21:25:03 -05:00
bootloaders: Correct formatting of 'no parition found' table dump
Change-Id: I0eb48a0a40d317f9b47b181e0a31bef7ffde1e15
This commit is contained in:
parent
7511d7e514
commit
936482abb5
6 changed files with 12 additions and 12 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue