summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.examples/process/wait4time.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.examples/process/wait4time.stp')
-rwxr-xr-xtestsuite/systemtap.examples/process/wait4time.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.examples/process/wait4time.stp b/testsuite/systemtap.examples/process/wait4time.stp
index ba300ea7..2fd914b9 100755
--- a/testsuite/systemtap.examples/process/wait4time.stp
+++ b/testsuite/systemtap.examples/process/wait4time.stp
@@ -53,7 +53,7 @@ probe syscall.wait4.return {
t = gettimeofday_us(); p = pid()
elapsed_time = t - entry_wait4[p]
printf("%d %s wait4: %d %d\n", timestamp(), proc(), elapsed_time,
- wait4_pid[p])
+ wait4_pid[p])
delete entry_wait4[p]
delete wait4_pid[p]
}