summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.context/args.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.context/args.stp')
-rw-r--r--testsuite/systemtap.context/args.stp4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/systemtap.context/args.stp b/testsuite/systemtap.context/args.stp
index 5d5208a2..e6cf9e92 100644
--- a/testsuite/systemtap.context/args.stp
+++ b/testsuite/systemtap.context/args.stp
@@ -23,10 +23,10 @@ probe module("systemtap_test_module2").function("yyy_int64").return {
printf("yyy_int64 returns %d\n", $return)
}
probe module("systemtap_test_module2").function("yyy_char") {
- printf("yyy_char %d %d %d\n", $a, $b, $c)
+ printf("yyy_char %1b %1b %1b\n", $a, $b, $c)
}
probe module("systemtap_test_module2").function("yyy_char").return {
- printf("yyy_char returns %d\n", $return)
+ printf("yyy_char returns %1b\n", $return)
}
probe module("systemtap_test_module2").function("yyy_str") {
printf("yyy_str %s-%s-%s\n", kernel_string($a), kernel_string($b), kernel_string($c))