summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 820e7aaa07..edbc2c3300 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1428,13 +1428,13 @@ static int disk_callback(int btn, struct gui_synclist *lists)
1428 '0' + (i & 7)); 1428 '0' + (i & 7));
1429 } 1429 }
1430#endif /* HAVE_ATA_DMA */ 1430#endif /* HAVE_ATA_DMA */
1431 i = identity_info[0] & (1 << 15); 1431 i = identify_info[0] & (1 << 15);
1432 simplelist_addline( 1432 simplelist_addline(
1433 "ATA device: %s", i ? "yes" : "no"); 1433 "ATA device: %s", i ? "yes" : "no");
1434 i = identity_info[0] & (1 << 6); 1434 i = identify_info[0] & (1 << 6);
1435 simplelist_addline( 1435 simplelist_addline(
1436 "Fixed device: %s", i ? "yes" : "no"); 1436 "Fixed device: %s", i ? "yes" : "no");
1437 i = identity_info[0] & (1 << 7); 1437 i = identify_info[0] & (1 << 7);
1438 simplelist_addline( 1438 simplelist_addline(
1439 "Removeable media: %s", i ? "yes" : "no"); 1439 "Removeable media: %s", i ? "yes" : "no");
1440 return btn; 1440 return btn;