diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-05-20 18:33:38 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-05-20 18:33:38 -0400 |
commit | cf96be783e89607e1b8b755bbd08ba41b564c4fc (patch) | |
tree | 8c93ecf1a596d2f72ec6b1bd51517c57504d4bbb /tapset/x86_64 | |
parent | 2d6640ba82d5f243bcd3165fa11576a7cfee8c57 (diff) | |
download | systemtap-steved-cf96be783e89607e1b8b755bbd08ba41b564c4fc.tar.gz systemtap-steved-cf96be783e89607e1b8b755bbd08ba41b564c4fc.tar.xz systemtap-steved-cf96be783e89607e1b8b755bbd08ba41b564c4fc.zip |
PR6538: tapset changes
Diffstat (limited to 'tapset/x86_64')
-rw-r--r-- | tapset/x86_64/syscalls.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/x86_64/syscalls.stp b/tapset/x86_64/syscalls.stp index 418aaf23..c9ab617f 100644 --- a/tapset/x86_64/syscalls.stp +++ b/tapset/x86_64/syscalls.stp @@ -131,7 +131,7 @@ probe syscall.vm86_warning.return = kernel.function("sys32_vm86_warning").return # probe syscall.pipe32 = kernel.function("sys32_pipe") { name = "pipe" - argstr = sprintf("%p", fd) + argstr = sprintf("%p", $fd) } probe syscall.pipe32.return = kernel.function("sys32_pipe").return { name = "pipe" |