summaryrefslogtreecommitdiffstats
path: root/runtime/transport
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2009-09-08 19:04:16 -0400
committerFrank Ch. Eigler <fche@elastic.org>2009-09-08 20:36:53 -0400
commitd1292e962e1207cddf686a0196effa6bc8f6a217 (patch)
tree58437e1d6111b52b5b2dd30a9d87f8508af41f19 /runtime/transport
parent20b69eca3931d338b09134b9c1f5dee2c49ca55b (diff)
downloadsystemtap-steved-d1292e962e1207cddf686a0196effa6bc8f6a217.tar.gz
systemtap-steved-d1292e962e1207cddf686a0196effa6bc8f6a217.tar.xz
systemtap-steved-d1292e962e1207cddf686a0196effa6bc8f6a217.zip
fix typo: KERN_ERROR -> KERN_ERR from last commit
Diffstat (limited to 'runtime/transport')
-rw-r--r--runtime/transport/control.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/transport/control.c b/runtime/transport/control.c
index 2b368320..0e18bb8b 100644
--- a/runtime/transport/control.c
+++ b/runtime/transport/control.c
@@ -175,7 +175,7 @@ static int _stp_ctl_send(int type, void *data, int len)
wake_up_interruptible(&_stp_ctl_wq);
else
// printk instead of _stp_error since an error here means our transport is suspect
- printk(KERN_ERROR "ctl_send (type=%d len=%d) failed: %d\n", type, len, err);
+ printk(KERN_ERR "ctl_send (type=%d len=%d) failed: %d\n", type, len, err);
dbug_trans(1, "returning %d\n", err);
return err;
}