diff options
Diffstat (limited to 'testsuite/systemtap.examples/process/sigkill.stp')
-rwxr-xr-x | testsuite/systemtap.examples/process/sigkill.stp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/systemtap.examples/process/sigkill.stp b/testsuite/systemtap.examples/process/sigkill.stp index 6cb6ed1e..37960637 100755 --- a/testsuite/systemtap.examples/process/sigkill.stp +++ b/testsuite/systemtap.examples/process/sigkill.stp @@ -17,7 +17,7 @@ # [...] probe signal.send { - if (sig_name == "SIGKILL") - printf("%s was sent to %s (pid:%d) by %s uid:%d\n", - sig_name, pid_name, sig_pid, execname(), uid()) + if (sig_name == "SIGKILL") + printf("%s was sent to %s (pid:%d) by %s uid:%d\n", + sig_name, pid_name, sig_pid, execname(), uid()) } |