staging: lustre: socklnd: Fix indenting

Fixed indenting of if statement in socklnd.c to meet kernel coding style.

Signed-off-by: Masaru Nomura <massa.nomura@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Masaru Nomura 2014-05-15 01:03:42 +01:00 committed by Greg Kroah-Hartman
parent 991cc8d611
commit a10f33e960
1 changed files with 2 additions and 1 deletions

View File

@ -2510,7 +2510,8 @@ ksocknal_debug_peerhash (lnet_ni_t *ni)
list_for_each (tmp, &ksocknal_data.ksnd_peers[i]) {
peer = list_entry (tmp, ksock_peer_t, ksnp_list);
if (peer->ksnp_ni == ni) break;
if (peer->ksnp_ni == ni)
break;
peer = NULL;
}