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.printf/hello2.stp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuite/systemtap.printf') diff --git a/testsuite/systemtap.printf/hello2.stp b/testsuite/systemtap.printf/hello2.stp index aa0798fa..de3db588 100644 --- a/testsuite/systemtap.printf/hello2.stp +++ b/testsuite/systemtap.printf/hello2.stp @@ -1,7 +1,7 @@ probe begin { print("Print"); - log("Systemtap"); + println("Systemtap"); warn("warning"); exit() } -- cgit