From dda823f922ac7294cd24eeb4b1bb7436af24c8c7 Mon Sep 17 00:00:00 2001 From: hunt Date: Mon, 12 Nov 2007 22:04:35 +0000 Subject: 2007-11-12 Martin Hunt * systemtap.base/*.stp: Replace log() calls with println() (or printf() if formatting would help.) * systemtap.maps/*.stp: Ditto. * systemtap.samples/*.stp: Ditto. * systemtap.stress/*.stp: Ditto. --- testsuite/systemtap.samples/args.stp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuite/systemtap.samples/args.stp') 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 () } -- cgit