aboutsummaryrefslogtreecommitdiffstats
path: root/fs/afs/vl_alias.c
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2020-06-09 16:25:02 +0100
committerDavid Howells <dhowells@redhat.com>2020-06-09 18:17:14 +0100
commitfed79fd7834027c152a1491a42be252eb1c2a6b5 (patch)
treefac0c7cc3a6f5201cb58fe1892b6c9c4979e5412 /fs/afs/vl_alias.c
parentafs: Fix use of BUG() (diff)
downloadlinux-dev-fed79fd7834027c152a1491a42be252eb1c2a6b5.tar.xz
linux-dev-fed79fd7834027c152a1491a42be252eb1c2a6b5.zip
afs: Fix debugging statements with %px to be %p
Fix a couple of %px to be %p in debugging statements. Fixes: e49c7b2f6de7 ("afs: Build an abstraction around an "operation" concept") Fixes: 8a070a964877 ("afs: Detect cell aliases 1 - Cells with root volumes") Reported-by: Kees Cook <keescook@chromium.org> Signed-off-by: David Howells <dhowells@redhat.com> Reviewed-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to '')
-rw-r--r--fs/afs/vl_alias.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/vl_alias.c b/fs/afs/vl_alias.c
index 136fc6164e00..5082ef04e99c 100644
--- a/fs/afs/vl_alias.c
+++ b/fs/afs/vl_alias.c
@@ -28,7 +28,7 @@ static struct afs_volume *afs_sample_volume(struct afs_cell *cell, struct key *k
};
volume = afs_create_volume(&fc);
- _leave(" = %px", volume);
+ _leave(" = %p", volume);
return volume;
}