projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3dacbda
)
ecryptfs: fix printk format warning
author
Randy Dunlap
<
[email protected]
>
Tue, 28 Apr 2009 04:24:28 +0000
(21:24 -0700)
committer
Tyler Hicks
<
[email protected]
>
Mon, 27 Apr 2009 18:10:06 +0000
(13:10 -0500)
fs/ecryptfs/inode.c:670: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
Signed-off-by: Randy Dunlap <
[email protected]
>
Signed-off-by: Tyler Hicks <
[email protected]
>
Cc: Dustin Kirkland <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
fs/ecryptfs/inode.c
patch
|
blob
|
history
diff --git
a/fs/ecryptfs/inode.c
b/fs/ecryptfs/inode.c
index 93bc0f8174a7a23614000c74a28dcec0bda39ee1..1940edd08307ea751f4d028eabc01cb1d6f247d5 100644
(file)
--- a/
fs/ecryptfs/inode.c
+++ b/
fs/ecryptfs/inode.c
@@
-667,7
+667,7
@@
ecryptfs_readlink(struct dentry *dentry, char __user *buf, int bufsiz)
lower_buf = kmalloc(lower_bufsiz, GFP_KERNEL);
if (lower_buf == NULL) {
printk(KERN_ERR "%s: Out of memory whilst attempting to "
- "kmalloc [%d] bytes\n", __func__, lower_bufsiz);
+ "kmalloc [%
z
d] bytes\n", __func__, lower_bufsiz);
rc = -ENOMEM;
goto out;
}