diff options
author | James Buren <braewoods+rb@braewoods.net> | 2021-03-22 06:30:06 -0500 |
---|---|---|
committer | James Buren <braewoods+rb@braewoods.net> | 2021-03-22 06:30:06 -0500 |
commit | 3a254a92c7363aad95cfcc549732e44d9eddc42b (patch) | |
tree | d748d8cae6affae877c689018e0725d7f39b2349 /apps/debug_menu.c | |
parent | 3f88512b3b0942d47abde612675679c77274ee2f (diff) |
debug_menu: Fix compile error from previous commit
Change-Id: If01ba31a34be3e277a98adb93861aa2a19d8829d
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r-- | apps/debug_menu.c | 6 |
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) '0' + (i & 7)); } #endif /* HAVE_ATA_DMA */ - i = identity_info[0] & (1 << 15); + i = identify_info[0] & (1 << 15); simplelist_addline( "ATA device: %s", i ? "yes" : "no"); - i = identity_info[0] & (1 << 6); + i = identify_info[0] & (1 << 6); simplelist_addline( "Fixed device: %s", i ? "yes" : "no"); - i = identity_info[0] & (1 << 7); + i = identify_info[0] & (1 << 7); simplelist_addline( "Removeable media: %s", i ? "yes" : "no"); return btn; |