summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhunt <hunt>2006-04-17 20:11:43 +0000
committerhunt <hunt>2006-04-17 20:11:43 +0000
commita419971a4865c7abf0d05ed61abad74d5e66dc2d (patch)
treec01b606b4a19902a45ac960a57d84d16a031e8b9
parent4fb2201287fbd8d922698cf798f7ba8e4c463049 (diff)
downloadsystemtap-steved-a419971a4865c7abf0d05ed61abad74d5e66dc2d.tar.gz
systemtap-steved-a419971a4865c7abf0d05ed61abad74d5e66dc2d.tar.xz
systemtap-steved-a419971a4865c7abf0d05ed61abad74d5e66dc2d.zip
Fix comment.
-rw-r--r--tapset/logging.stp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tapset/logging.stp b/tapset/logging.stp
index afbb0183..dcd9741a 100644
--- a/tapset/logging.stp
+++ b/tapset/logging.stp
@@ -6,8 +6,7 @@
// Public License (GPL); either version 2, or (at your option) any
// later version.
-// Write a message to the console (actually stderr). A newline is appended
-// if the string does not end in one.
+// send a string out with a newline
function log (msg:string) %{
_stp_printf ("%s\n", THIS->msg);
%}