hdd_menu: avoid compiler warning

This commit is contained in:
Stefan Seyfried
2013-09-28 13:40:41 +02:00
parent c68ffa2155
commit a6b41ccc72

View File

@@ -191,7 +191,8 @@ int CHDDMenuHandler::doMenu ()
if (ret != -1) { if (ret != -1) {
if ((int)(s.st_rdev & drive_mask) == root_dev) { if ((int)(s.st_rdev & drive_mask) == root_dev) {
isroot = true; isroot = true;
printf("-> root device is on this disk 0x%04" PRIx64 ", skipping\n", s.st_rdev); /* dev_t is different sized on different architectures :-( */
printf("-> root device is on this disk 0x%04x, skipping\n", (int)s.st_rdev);
} }
} }
close(fd); close(fd);