We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbb5ce8 commit 49d1cb3Copy full SHA for 49d1cb3
tests/mtd_raw/main.c
@@ -281,7 +281,7 @@ static int cmd_info(int argc, char **argv)
281
if (argc < 2) {
282
printf("mtd devices: %d\n", MTD_NUMOF);
283
284
- for (int i = 0; i < MTD_NUMOF; ++i) {
+ for (unsigned i = 0; i < MTD_NUMOF; ++i) {
285
printf(" -=[ MTD_%d ]=-\n", i);
286
_print_info(mtd_default_get_dev(i));
287
}
@@ -450,7 +450,7 @@ int main(void)
450
puts("no MTD device present on the board.");
451
452
453
454
printf("init MTD_%d… ", i);
455
456
mtd_dev_t *dev = mtd_default_get_dev(i);
0 commit comments