Skip to content

Commit 6223ad2

Browse files
committed
Fix format string
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30935 a1c6a512-1295-4272-9138-f99709370657
1 parent 1afcd74 commit 6223ad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flash/extract/extract.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ int main(int argc, char* argv[])
109109
// sanity check
110110
if (uiSize > sizeof(aImage) - uiStart || uiSize < 40000)
111111
{
112-
printf("Error: Impossible image size &d bytes.\n", uiSize);
112+
printf("Error: Impossible image size %d bytes.\n", uiSize);
113113
exit(3);
114114
}
115115

0 commit comments

Comments
 (0)