Fix format string

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30935 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Jarosch 2011-11-08 21:25:50 +00:00
parent 1afcd74fdd
commit 6223ad266e
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ int main(int argc, char* argv[])
// sanity check
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);
}