summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/prologues.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.base/prologues.stp')
-rw-r--r--testsuite/systemtap.base/prologues.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.base/prologues.stp b/testsuite/systemtap.base/prologues.stp
index fc32ccd9..cbda14f9 100644
--- a/testsuite/systemtap.base/prologues.stp
+++ b/testsuite/systemtap.base/prologues.stp
@@ -1,6 +1,6 @@
# These sys_ functions often display prologue sensitivity
probe syscall.read, syscall.write {
- log (name . argstr)
+ printf("%s (%s)\n", name, argstr)
if (num++ > 20) exit()
}
global num