Skip to content
This repository was archived by the owner on Dec 24, 2025. It is now read-only.

Commit 960a670

Browse files
author
elias.bachaalany@gmail.com
committed
minor mods
1 parent fbb5bfa commit 960a670

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,8 +1330,8 @@ static int idaapi on_ui_notification(void *, int code, va_list va)
13301330
case ui_add_menu_item:
13311331
if ( hexdsp == NULL )
13321332
{
1333-
const char *name = va_arg(va, char *);
1334-
name = va_arg(va, char *); // Drop 'menupath'. Look for 'name'.
1333+
(void)va_arg(va, char *); // Drop 'menupath'
1334+
const char *name = va_arg(va, char *); // Look for 'name'.
13351335
if ( streq(name, "Jump to pseudocode") )
13361336
{
13371337
init_hexrays_plugin(0);

0 commit comments

Comments
 (0)