diff options
author | Steve French <smfrench@gmail.com> | 2014-08-03 06:16:48 +0400 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2014-08-03 06:16:48 +0400 |
commit | 59b04c5df75bd715002bb535930ae1982a739269 (patch) | |
tree | 8ef4ccc086a0307cfe70fc193ba128482506ec98 /fs/cifs/cifs_debug.c | |
parent | 2075cf0b71bfffc4942e232f1487ac98bdfb7bf5 (diff) | |
download | linux-59b04c5df75bd715002bb535930ae1982a739269.tar.xz |
[CIFS] Fix incorrect hex vs. decimal in some debug print statements
Joe Perches and Hans Wennborg noticed that various places in the
kernel were printing decimal numbers with 0x prefix.
printk("0x%d") or equivalent
This fixes the instances of this in the cifs driver.
CC: Hans Wennborg <hans@hanshq.net>
CC: Joe Perches <joe@perches.com>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs/cifs_debug.c')
-rw-r--r-- | fs/cifs/cifs_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifs_debug.c b/fs/cifs/cifs_debug.c index f3ac4154cbb6..44ec72684df5 100644 --- a/fs/cifs/cifs_debug.c +++ b/fs/cifs/cifs_debug.c @@ -213,7 +213,7 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) tcon->nativeFileSystem); } seq_printf(m, "DevInfo: 0x%x Attributes: 0x%x" - "\n\tPathComponentMax: %d Status: 0x%d", + "\n\tPathComponentMax: %d Status: %d", le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics), le32_to_cpu(tcon->fsAttrInfo.Attributes), le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength), |