Commit 2b87d43d authored by Nathan Scott's avatar Nathan Scott Committed by Nathan Scott

[XFS] Remove unneeded escape from printed string. From Chris Wedgwood.

SGI Modid: xfs-linux:xfs-kern:174336a
Signed-off-by: default avatarNathan Scott <nathans@sgi.com>
parent 3105b9b6
...@@ -1114,7 +1114,7 @@ mutex_t qcheck_lock; ...@@ -1114,7 +1114,7 @@ mutex_t qcheck_lock;
cmn_err(CE_DEBUG, "%s (#%d)", title, (int) (l)->qh_nelems); \ cmn_err(CE_DEBUG, "%s (#%d)", title, (int) (l)->qh_nelems); \
for (dqp = (xfs_dqtest_t *)(l)->qh_next; dqp != NULL; \ for (dqp = (xfs_dqtest_t *)(l)->qh_next; dqp != NULL; \
dqp = (xfs_dqtest_t *)dqp->NXT) { \ 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), \ ++i, dqp->d_id, DQFLAGTO_TYPESTR(dqp), \
dqp->d_bcount, dqp->d_icount); } \ dqp->d_bcount, dqp->d_icount); } \
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment