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

Commit 740bb72

Browse files
analysis: calling convention is named __stdcall, not stdcall
1 parent fc1a0db commit 740bb72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

idb/analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def get_signature(self):
730730

731731
if six.indexbytes(typebuf, 0x1) == ord('S'):
732732
# this is just a guess...
733-
conv = 'stdcall'
733+
conv = '__stdcall'
734734
else:
735735
raise NotImplementedError()
736736

0 commit comments

Comments
 (0)