Unionfs: add missing newlines to printks
authorErez_Zadok <ezk@cs.sunysb.edu>
Fri, 16 Nov 2007 18:46:26 +0000 (13:46 -0500)
committerRachita Kothiyal <rachita@dewey.fsl.cs.sunysb.edu>
Thu, 1 May 2008 23:03:06 +0000 (19:03 -0400)
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
fs/unionfs/dentry.c

index da149fe0c3d2ac5355d7495b3b20b4f21e3434d2..d0c55d7234cdeece56a53962d188929ccf4d2515 100644 (file)
@@ -454,13 +454,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;
        }