aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorRandy Dunlap <rddunlap@osdl.org>2004-07-10 19:33:45 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-07-10 19:33:45 -0700
commit99ab2a4b12de687bd7e1bf81ee8fcc799b756d48 (patch)
treec6f4db9c1a7f51b4eb38c569dcb2c7a928730074 /fs
parentcf02d5a464e4f2654573df5e1fa199357b77c3aa (diff)
downloadhistory-99ab2a4b12de687bd7e1bf81ee8fcc799b756d48.tar.gz
[PATCH] smbfs compilation warning fix
Use %Zd to eliminate a compiler warning in printk. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/smbfs/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smbfs/file.c b/fs/smbfs/file.c
index 12fc56cac3a90d..b28f42e3bf08db 100644
--- a/fs/smbfs/file.c
+++ b/fs/smbfs/file.c
@@ -271,7 +271,7 @@ smb_file_sendfile(struct file *file, loff_t *ppos,
status = smb_revalidate_inode(dentry);
if (status) {
- PARANOIA("%s/%s validation failed, error=%zd\n",
+ PARANOIA("%s/%s validation failed, error=%Zd\n",
DENTRY_PATH(dentry), status);
goto out;
}