Skip to content

Commit 44341fa

Browse files
committed
Fix typo
1 parent a41f63a commit 44341fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qiling/extensions/idaplugin/qilingida.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1497,7 +1497,7 @@ def _force_execution_by_parsing_assembly(self, ql, ida_addr):
14971497
high = IDA.get_operand(ida_addr, 1)
14981498
reg = IDA.print_operand(ida_addr, 0).lower()
14991499
val = (high << 16) + low
1500-
logging.info(f"Force set {reg1} to {hex(val)}")
1500+
logging.info(f"Force set {reg} to {hex(val)}")
15011501
ql.reg.__setattr__(reg, val)
15021502
return True
15031503
elif "csel" in instr: # csel dst, src1, src2, cond

0 commit comments

Comments
 (0)