summaryrefslogtreecommitdiffstats
path: root/tapset
diff options
context:
space:
mode:
Diffstat (limited to 'tapset')
-rw-r--r--tapset/builtin_log.stp2
-rw-r--r--tapset/builtin_printk.stp2
-rw-r--r--tapset/builtin_warn.stp2
3 files changed, 3 insertions, 3 deletions
diff --git a/tapset/builtin_log.stp b/tapset/builtin_log.stp
index 2932d66e..3d1a0aaf 100644
--- a/tapset/builtin_log.stp
+++ b/tapset/builtin_log.stp
@@ -3,5 +3,5 @@ function _log (msg) %{
%}
function log (msg) {
- return 0 + _log (msg . "")
+ _log (msg . "")
}
diff --git a/tapset/builtin_printk.stp b/tapset/builtin_printk.stp
index 3e456fb2..81826849 100644
--- a/tapset/builtin_printk.stp
+++ b/tapset/builtin_printk.stp
@@ -3,5 +3,5 @@ function _printk (msg) %{
%}
function printk (msg) {
- return 0 + _printk (msg . "")
+ _printk (msg . "")
}
diff --git a/tapset/builtin_warn.stp b/tapset/builtin_warn.stp
index 98fef7fe..97289ee0 100644
--- a/tapset/builtin_warn.stp
+++ b/tapset/builtin_warn.stp
@@ -3,5 +3,5 @@ function _warn (msg) %{
%}
function warn (msg) {
- return 0 + _warn (msg . "")
+ _warn (msg . "")
}