Fix format string
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30935 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1afcd74fdd
commit
6223ad266e
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ int main(int argc, char* argv[])
|
||||||
// sanity check
|
// sanity check
|
||||||
if (uiSize > sizeof(aImage) - uiStart || uiSize < 40000)
|
if (uiSize > sizeof(aImage) - uiStart || uiSize < 40000)
|
||||||
{
|
{
|
||||||
printf("Error: Impossible image size &d bytes.\n", uiSize);
|
printf("Error: Impossible image size %d bytes.\n", uiSize);
|
||||||
exit(3);
|
exit(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue