diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2018-01-09 20:43:36 +0100 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-01-12 23:09:08 +0100 |
commit | 3d170aa24283568b1ed92a09daa0e05a8788c6a4 (patch) | |
tree | a112b0cde35fe23770ff4dc22ff878ffdb0211d8 /fs/xfs/xfs_fsops.c | |
parent | xfs: clarify units in the failed metadata io message (diff) | |
download | linux-3d170aa24283568b1ed92a09daa0e05a8788c6a4.tar.xz linux-3d170aa24283568b1ed92a09daa0e05a8788c6a4.zip |
xfs: change 0x%p -> %p in print messages
Since %p prepends "0x" to the outputted string, we can drop the prefix.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/xfs_fsops.c')
-rw-r--r-- | fs/xfs/xfs_fsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_fsops.c b/fs/xfs/xfs_fsops.c index 84d73835c614..cc86b2b34243 100644 --- a/fs/xfs/xfs_fsops.c +++ b/fs/xfs/xfs_fsops.c @@ -878,7 +878,7 @@ xfs_do_force_shutdown( if (!(flags & SHUTDOWN_FORCE_UMOUNT)) { xfs_notice(mp, - "%s(0x%x) called from line %d of file %s. Return address = 0x%p", + "%s(0x%x) called from line %d of file %s. Return address = %p", __func__, flags, lnnum, fname, __return_address); } /* |