summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Buren <braewoods+rb@braewoods.net>2021-03-22 06:30:06 -0500
committerJames Buren <braewoods+rb@braewoods.net>2021-03-22 06:30:06 -0500
commit3a254a92c7363aad95cfcc549732e44d9eddc42b (patch)
treed748d8cae6affae877c689018e0725d7f39b2349
parent3f88512b3b0942d47abde612675679c77274ee2f (diff)
downloadrockbox-3a254a92c7363aad95cfcc549732e44d9eddc42b.tar.gz
rockbox-3a254a92c7363aad95cfcc549732e44d9eddc42b.zip
debug_menu: Fix compile error from previous commit
Change-Id: If01ba31a34be3e277a98adb93861aa2a19d8829d
-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;