Browse Source

staging: lustre: Fix space before '++' error

Fix checkpatch.pl error:
ERROR: space prohibited before that '++' (ctx:WxO)

Signed-off-by: Miguel Bernabeu Diaz <miguelbernadi@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Miguel Bernabeu Diaz 10 years ago
parent
commit
83b912c67b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h

+ 1 - 1
drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h

@@ -887,7 +887,7 @@ kiblnd_rd_consume_frag(kib_rdma_desc_t *rd, int index, __u32 nob)
 		rd->rd_frags[index].rf_addr += nob;
 		rd->rd_frags[index].rf_nob  -= nob;
 	} else {
-		index ++;
+		index++;
 	}
 
 	return index;