summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhunt <hunt>2006-04-17 19:35:36 +0000
committerhunt <hunt>2006-04-17 19:35:36 +0000
commit4fb2201287fbd8d922698cf798f7ba8e4c463049 (patch)
tree5ec539e32eedb09ea91295926a0ac362f9540cda
parent0b5e63eb3779b41d122bbdd6a45a639aececd72b (diff)
downloadsystemtap-steved-4fb2201287fbd8d922698cf798f7ba8e4c463049.tar.gz
systemtap-steved-4fb2201287fbd8d922698cf798f7ba8e4c463049.tar.xz
systemtap-steved-4fb2201287fbd8d922698cf798f7ba8e4c463049.zip
Revert.
-rw-r--r--tapset/logging.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/logging.stp b/tapset/logging.stp
index 659ef389..afbb0183 100644
--- a/tapset/logging.stp
+++ b/tapset/logging.stp
@@ -9,7 +9,7 @@
// Write a message to the console (actually stderr). A newline is appended
// if the string does not end in one.
function log (msg:string) %{
- _stp_log (THIS->msg);
+ _stp_printf ("%s\n", THIS->msg);
%}
function warn (msg:string) %{