diff options
author | mdodd <mdodd@FreeBSD.org> | 2002-08-04 02:20:06 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 2002-08-04 02:20:06 +0000 |
commit | b4aa304f721d9d64f5cb0a5b89efeccd3125d70f (patch) | |
tree | c41ae6eec398882e664ccf47fadac498df4f9cf4 /usr.bin/truss/main.c | |
parent | 2eb842c01d67742d7bfbe3b080315627eaf6425e (diff) | |
download | FreeBSD-src-b4aa304f721d9d64f5cb0a5b89efeccd3125d70f.zip FreeBSD-src-b4aa304f721d9d64f5cb0a5b89efeccd3125d70f.tar.gz |
Add a "FreeBSD ELF32" entry to ex_types[].
Diffstat (limited to 'usr.bin/truss/main.c')
-rw-r--r-- | usr.bin/truss/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/truss/main.c b/usr.bin/truss/main.c index 0a31993..f8b54fe 100644 --- a/usr.bin/truss/main.c +++ b/usr.bin/truss/main.c @@ -87,6 +87,7 @@ struct ex_types { #ifdef __i386__ { "FreeBSD a.out", i386_syscall_entry, i386_syscall_exit }, { "FreeBSD ELF", i386_syscall_entry, i386_syscall_exit }, + { "FreeBSD ELF32", i386_syscall_entry, i386_syscall_exit }, { "Linux ELF", i386_linux_syscall_entry, i386_linux_syscall_exit }, #endif { 0, 0, 0 }, |