From ca1dbbd26118847eff3cc93ab77e4fa8524484ff Mon Sep 17 00:00:00 2001 From: Erez_Zadok Date: Mon, 10 Sep 2007 20:09:41 -0400 Subject: [PATCH] Unionfs: add missing newlines to printks Signed-off-by: Erez Zadok --- fs/unionfs/dentry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/unionfs/dentry.c b/fs/unionfs/dentry.c index f32922e2e57..91f97802b20 100644 --- a/fs/unionfs/dentry.c +++ b/fs/unionfs/dentry.c @@ -438,13 +438,13 @@ static void unionfs_d_release(struct dentry *dentry) unionfs_check_dentry(dentry); /* this could be a negative dentry, so check first */ if (!UNIONFS_D(dentry)) { - printk(KERN_DEBUG "unionfs: dentry without private data: %.*s", + printk(KERN_DEBUG "unionfs: dentry without private data: %.*s\n", dentry->d_name.len, dentry->d_name.name); goto out; } else if (dbstart(dentry) < 0) { /* this is due to a failed lookup */ printk(KERN_DEBUG "unionfs: dentry without lower " - "dentries: %.*s", + "dentries: %.*s\n", dentry->d_name.len, dentry->d_name.name); goto out_free; } -- 2.43.0