Skip to content

Commit a93c9b7

Browse files
committed
Fix typo
1 parent 06b96e6 commit a93c9b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

windows/winobject/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,7 @@ def create_thread(self, addr, param):
11721172
# And we can asume we known what we are doing -> So no safeguard ;)
11731173
thread_handle = HANDLE()
11741174
if windows.current_process.bitness == 32 and self.bitness == 64:
1175-
if self._is_x86_on_arm64():
1175+
if self._is_x86_on_arm64:
11761176
raise NotImplementedError("Crossing heaven gate x86 -> arm64 not implemented")
11771177
windows.syswow64.NtCreateThreadEx_32_to_64(ThreadHandle=byref(thread_handle) ,ProcessHandle=self.handle, lpStartAddress=addr, lpParameter=param)
11781178
else:

0 commit comments

Comments
 (0)