aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2004-08-20 05:47:21 +1000
committerNathan Scott <nathans@lips.borg.umn.edu>2004-08-20 05:47:21 +1000
commit2b87d43dded8e6365ee454a5e794307615d9dd72 (patch)
tree513c4213fad0333f1486a2308c346cf49a05f2a5 /fs
parent3105b9b65ba717b29fb7e96b0efb831f9991b40f (diff)
downloadhistory-2b87d43dded8e6365ee454a5e794307615d9dd72.tar.gz
[XFS] Remove unneeded escape from printed string. From Chris Wedgwood.
SGI Modid: xfs-linux:xfs-kern:174336a Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/quota/xfs_qm_syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/quota/xfs_qm_syscalls.c b/fs/xfs/quota/xfs_qm_syscalls.c
index 5a0f1ad941e9a6..b31e2abe313fa9 100644
--- a/fs/xfs/quota/xfs_qm_syscalls.c
+++ b/fs/xfs/quota/xfs_qm_syscalls.c
@@ -1114,7 +1114,7 @@ mutex_t qcheck_lock;
cmn_err(CE_DEBUG, "%s (#%d)", title, (int) (l)->qh_nelems); \
for (dqp = (xfs_dqtest_t *)(l)->qh_next; dqp != NULL; \
dqp = (xfs_dqtest_t *)dqp->NXT) { \
- cmn_err(CE_DEBUG, " %d\. \"%d (%s)\" bcnt = %d, icnt = %d", \
+ cmn_err(CE_DEBUG, " %d. \"%d (%s)\" bcnt = %d, icnt = %d", \
++i, dqp->d_id, DQFLAGTO_TYPESTR(dqp), \
dqp->d_bcount, dqp->d_icount); } \
}