Skip to content

Commit 40e36ca

Browse files
committed
freebsd: clean up syscall_dump.py
1 parent e7b4b07 commit 40e36ca

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

examples/src/freebsd/syscall_dump.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
#
33
# Cross Platform and Multi Architecture Advanced Binary Emulation Framework
44
# Built on top of Unicorn emulator (www.unicorn-engine.org)
5-
# The 'freebsd_syscall' can be download at 'https://github.com/freebsd/freebsd/blob/master/sys/kern/syscalls.master'.
5+
6+
# https://github.com/freebsd/freebsd/blob/master/sys/kern/syscalls.master
67

78
import re
89

@@ -39,5 +40,5 @@ def read_file(f):
3940
line = f.readline()
4041

4142
if __name__ == '__main__':
42-
file = open('./freebsd_syscall')
43+
file = open('./syscalls.master')
4344
read_file(file)

0 commit comments

Comments
 (0)