summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.examples/process/sigkill.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.examples/process/sigkill.stp')
-rwxr-xr-xtestsuite/systemtap.examples/process/sigkill.stp6
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())
}