From 1660fe1c3ca10e22e9614dddcf4008a7eec608ec Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sat, 9 Jan 2010 15:01:59 +0000 Subject: [PATCH] Fixed the following category of checkpatch complaints: 2 ERROR: code indent should use tabs where possible git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1440 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- iscsi-scst/kernel/iscsi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iscsi-scst/kernel/iscsi.c b/iscsi-scst/kernel/iscsi.c index 2c5c01c1c..3a2ded46a 100644 --- a/iscsi-scst/kernel/iscsi.c +++ b/iscsi-scst/kernel/iscsi.c @@ -1650,8 +1650,8 @@ int cmnd_rx_continue(struct iscsi_cmnd *req) if (unlikely(scst_cmd_completed(scst_cmd) || unlikely(req->prelim_compl_flags != 0) || unlikely(scst_cmd_aborted(scst_cmd)))) { - if (scst_cmd_aborted(scst_cmd)) - set_bit(ISCSI_CMD_ABORTED, &req->prelim_compl_flags); + if (scst_cmd_aborted(scst_cmd)) + set_bit(ISCSI_CMD_ABORTED, &req->prelim_compl_flags); res = iscsi_preliminary_complete(req, req, true); goto trace; }