Skip to content

Commit 025cfc3

Browse files
committed
Fix wrong space
1 parent cbcbf9c commit 025cfc3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

qiling/utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,6 @@ def ql_elf_parse_emu_env(path: str) -> Tuple[Optional[QL_ARCH], Optional[QL_OS],
298298
elif e_machine == b"\xf3\x00" and elfbit == 2:
299299
archendian = QL_ENDIAN.EL
300300
arch = QL_ARCH.RISCV64
301-
302301

303302
return arch, ostype, archendian
304303

@@ -389,7 +388,7 @@ def ql_guess_emu_env(path: str) -> Tuple[Optional[QL_ARCH], Optional[QL_OS], Opt
389388
if os.path.isfile(path) and path.endswith('.DOS_EXE'):
390389
return QL_ARCH.A8086, QL_OS.DOS, QL_ENDIAN.EL
391390

392-
arch, ostype, endian = ql_elf_parse_emu_env(path)
391+
arch, ostype, endian = ql_elf_parse_emu_env(path)
393392

394393
if arch is None or ostype is None or endian is None:
395394
arch, ostype, endian = ql_macho_parse_emu_env(path)

0 commit comments

Comments
 (0)