Commit 7a8c48a2 authored by Scott Matheina's avatar Scott Matheina Committed by Greg Kroah-Hartman
Browse files

staging:wilc1000:host_interface.c Added braces {} on else statemement



Fixes checkpatch warning: braces {} should be used on all arms of
this statement

Signed-off-by: default avatarScott Matheina <scott@matheina.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 045cb1c7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3998,10 +3998,11 @@ static void *host_int_ParseJoinBssParam(struct network_info *ptstrNetworkInfo)
				pNewJoinBssParam->rsn_found = true;
				index += pu8IEs[index + 1] + 2;
				continue;
			} else
			} else {
				index += pu8IEs[index + 1] + 2;
			}
		}
	}

	return (void *)pNewJoinBssParam;
}