diff options
Diffstat (limited to 'testsuite/systemtap.samples/args.stp')
-rw-r--r-- | testsuite/systemtap.samples/args.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.samples/args.stp b/testsuite/systemtap.samples/args.stp index 85e731ac..84b6080e 100644 --- a/testsuite/systemtap.samples/args.stp +++ b/testsuite/systemtap.samples/args.stp @@ -3,7 +3,7 @@ global foo, bar probe begin { - log ("foo=" . foo . " bar=" . sprint (bar+0 /* cast bar to integer */)) + printf("foo=%s bar=%d\n", foo, bar) exit () } |