Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 802b352f authored by Randy Dunlap's avatar Randy Dunlap Committed by Tyler Hicks
Browse files

ecryptfs: fix printk format warning



fs/ecryptfs/inode.c:670: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'

Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarTyler Hicks <tyhicks@linux.vnet.ibm.com>
Cc: Dustin Kirkland <kirkland@canonical.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 3dacbdad
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -667,7 +667,7 @@ ecryptfs_readlink(struct dentry *dentry, char __user *buf, int bufsiz)
	lower_buf = kmalloc(lower_bufsiz, GFP_KERNEL);
	lower_buf = kmalloc(lower_bufsiz, GFP_KERNEL);
	if (lower_buf == NULL) {
	if (lower_buf == NULL) {
		printk(KERN_ERR "%s: Out of memory whilst attempting to "
		printk(KERN_ERR "%s: Out of memory whilst attempting to "
		       "kmalloc [%d] bytes\n", __func__, lower_bufsiz);
		       "kmalloc [%zd] bytes\n", __func__, lower_bufsiz);
		rc = -ENOMEM;
		rc = -ENOMEM;
		goto out;
		goto out;
	}
	}