diff options
| author | Eric Sandeen <sandeen@sgi.com> | 2002-12-20 23:11:41 +0100 |
|---|---|---|
| committer | Christoph Hellwig <hch@sgi.com> | 2002-12-20 23:11:41 +0100 |
| commit | 3b1b949fa39745e4dae284ba01fa3a76649261ed (patch) | |
| tree | f077017694ec7776f65e7e1844e2914f4087ef0c | |
| parent | 8920b3ccf02c8dc7190c993f8cf19ed9778638db (diff) | |
[XFS] Change some %x formats to %p for pointers
SGI Modid: 2.5.x-xfs:slinx:135454a
| -rw-r--r-- | fs/xfs/xfs_inode.c | 2 | ||||
| -rw-r--r-- | fs/xfs/xfs_rw.c | 2 | ||||
| -rw-r--r-- | fs/xfs/xfs_trans_buf.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index 0f6829c20b96..9c21a670f53d 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -142,7 +142,7 @@ xfs_inobp_bwcheck(xfs_buf_t *bp) } if (INT_ISZERO(dip->di_next_unlinked, ARCH_CONVERT)) { cmn_err(CE_WARN, -"Bad next_unlinked field (0) in XFS inode buffer 0x%x, starting blockno %Ld, offset 0x%x", +"Bad next_unlinked field (0) in XFS inode buffer 0x%p, starting blockno %Ld, offset 0x%x", (__uint64_t)(__psunsigned_t) bp, (__int64_t) XFS_BUF_ADDR(bp), xfs_buf_offset(bp, i * mp->m_sb.sb_inodesize)); diff --git a/fs/xfs/xfs_rw.c b/fs/xfs/xfs_rw.c index f6cb452490f7..7e3f5ccd6c3d 100644 --- a/fs/xfs/xfs_rw.c +++ b/fs/xfs/xfs_rw.c @@ -97,7 +97,7 @@ xfs_do_force_shutdown( if (!(flags & XFS_FORCE_UMOUNT)) { cmn_err(CE_NOTE, - "xfs_force_shutdown(%s,0x%x) called from line %d of file %s. Return address = 0x%x", + "xfs_force_shutdown(%s,0x%x) called from line %d of file %s. Return address = 0x%p", mp->m_fsname,flags,lnnum,fname,__return_address); } /* diff --git a/fs/xfs/xfs_trans_buf.c b/fs/xfs/xfs_trans_buf.c index 829b9345433c..adcc0b050e5b 100644 --- a/fs/xfs/xfs_trans_buf.c +++ b/fs/xfs/xfs_trans_buf.c @@ -472,7 +472,7 @@ shutdown_abort: */ #if defined(DEBUG) if (XFS_BUF_ISSTALE(bp) && XFS_BUF_ISDELAYWRITE(bp)) - cmn_err(CE_NOTE, "about to pop assert, bp == 0x%x", bp); + cmn_err(CE_NOTE, "about to pop assert, bp == 0x%p", bp); #endif ASSERT((XFS_BUF_BFLAGS(bp) & (XFS_B_STALE|XFS_B_DELWRI)) != (XFS_B_STALE|XFS_B_DELWRI)); |
