From 3a254a92c7363aad95cfcc549732e44d9eddc42b Mon Sep 17 00:00:00 2001 From: James Buren Date: Mon, 22 Mar 2021 06:30:06 -0500 Subject: debug_menu: Fix compile error from previous commit Change-Id: If01ba31a34be3e277a98adb93861aa2a19d8829d --- apps/debug_menu.c | 6 +++--- 1 file 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; -- cgit v1.2.3