From dcaedd3b9a3cc4857a435fc555db15c09f369b48 Mon Sep 17 00:00:00 2001 From: Rohan-Sagar Date: Mon, 18 Mar 2024 23:21:48 -0400 Subject: [PATCH] Fixed issue for failed build --- src/widgets/HexWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/HexWidget.cpp b/src/widgets/HexWidget.cpp index 8775479b..9babb70d 100644 --- a/src/widgets/HexWidget.cpp +++ b/src/widgets/HexWidget.cpp @@ -1173,7 +1173,7 @@ void HexWidget::contextMenuEvent(QContextMenuEvent *event) } auto coreLock = Core()->core(); - RZFlagItem *flagItem = rz_flag_get_i(coreLock->flags, cursor.address); + RzFlagItem *flagItem = rz_flag_get_i(coreLock->flags, cursor.address); if (flagItem == 0x0) { actionDeleteFlag->setVisible(false);