Commit dbd18138 authored by Masanari Iida's avatar Masanari Iida Committed by Greg Kroah-Hartman
Browse files

staging: lustre: Remove unnecessary parentheses.



This patch remove unnecessary parentheses.

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a86a659f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 ||