9
0
Fork 0

commands: nandtest: Fix wrong format specifier

Fixes: 1e009bf mtd: Make erase_info structs 64bit where necessary

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2016-03-30 07:50:54 +02:00
parent 0832e4008f
commit 76d42c5115
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ static int erase_and_write(loff_t ofs, unsigned char *data,
ret = erase(fd, er.length, er.start);
if (ret < 0) {
perror("\nerase");
printf("Could't not erase flash at 0x%08x length 0x%08x.\n",
printf("Could't not erase flash at 0x%08llx length 0x%08llx.\n",
er.start, er.length);
return ret;
}