summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'runtime')
-rw-r--r--runtime/transport/ChangeLog4
-rw-r--r--runtime/transport/transport.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/runtime/transport/ChangeLog b/runtime/transport/ChangeLog
index b55657e9..56f4477b 100644
--- a/runtime/transport/ChangeLog
+++ b/runtime/transport/ChangeLog
@@ -1,3 +1,7 @@
+2008-03-31 Martin Hunt <hunt@redhat.com>
+
+ * transport.c (_stp_get_root_dir): Remove misleading error message.
+
2008-03-30 Martin Hunt <hunt@redhat.com>
* symbols.c (_stp_init_modules): If using frames, don't
diff --git a/runtime/transport/transport.c b/runtime/transport/transport.c
index 8f59584d..7ff9c8c0 100644
--- a/runtime/transport/transport.c
+++ b/runtime/transport/transport.c
@@ -369,7 +369,6 @@ static struct dentry *_stp_get_root_dir(const char *name)
_stp_lock_inode(sb->s_root->d_inode);
root = lookup_one_len(name, sb->s_root, strlen(name));
_stp_unlock_inode(sb->s_root->d_inode);
- errk("ERROR: root=%p\n", root);
if (!IS_ERR(root))
dput(root);
else {