1
0
Fork 0

staging: lustre: Remove unnecessary parentheses.

This patch remove unnecessary parentheses.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Masanari Iida 2014-11-08 16:12:19 +09:00 committed by Greg Kroah-Hartman
parent a86a659fb6
commit dbd18138a0
1 changed files with 1 additions and 1 deletions

View File

@ -925,7 +925,7 @@ static int lmv_iocontrol(unsigned int cmd, struct obd_export *exp,
__u32 index;
memcpy(&index, data->ioc_inlbuf2, sizeof(__u32));
if ((index >= count))
if (index >= count)
return -ENODEV;
if (lmv->tgts[index] == NULL ||