summaryrefslogtreecommitdiff
path: root/fs/ecryptfs/miscdev.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2016-09-27 15:18:02 +0300
committerTyler Hicks <tyhicks@canonical.com>2017-11-05 01:16:39 +0300
commit0996b67df6c1354f2df09c33ac652c37e2e2471f (patch)
tree4aa4bbaf9ed6cfffd2c58d991db7499d0f6c7938 /fs/ecryptfs/miscdev.c
parent0b07194bb55ed836c2cc7c22e866b87a14681984 (diff)
downloadlinux-0996b67df6c1354f2df09c33ac652c37e2e2471f.tar.xz
ecryptfs: add missing \n to end of various error messages
Trival fix, some error messages are missing a \n, so add it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
Diffstat (limited to 'fs/ecryptfs/miscdev.c')
-rw-r--r--fs/ecryptfs/miscdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ecryptfs/miscdev.c b/fs/ecryptfs/miscdev.c
index e4141f257495..595e684a95a5 100644
--- a/fs/ecryptfs/miscdev.c
+++ b/fs/ecryptfs/miscdev.c
@@ -383,7 +383,7 @@ ecryptfs_miscdev_write(struct file *file, const char __user *buf,
goto memdup;
} else if (count < MIN_MSG_PKT_SIZE || count > MAX_MSG_PKT_SIZE) {
printk(KERN_WARNING "%s: Acceptable packet size range is "
- "[%d-%zu], but amount of data written is [%zu].",
+ "[%d-%zu], but amount of data written is [%zu].\n",
__func__, MIN_MSG_PKT_SIZE, MAX_MSG_PKT_SIZE, count);
return -EINVAL;
}