Commit 7cf8e59e authored by Mario J. Rugiero's avatar Mario J. Rugiero Committed by Greg Kroah-Hartman

staging: wilc1000: replace 'ptr > 0' check by 'ptr' check.

This silences a sparse warning about incompatible comparisons, while making the
intent of the check a bit clearer.
Signed-off-by: default avatarMario J. Rugiero <mrugiero@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6b05fcc9
......@@ -2292,7 +2292,7 @@ static void Handle_AddBeacon(struct host_if_drv *hif_drv,
*pu8CurrByte++ = ((pstrSetBeaconParam->tail_len >> 16) & 0xFF);
*pu8CurrByte++ = ((pstrSetBeaconParam->tail_len >> 24) & 0xFF);
if (pstrSetBeaconParam->tail > 0)
if (pstrSetBeaconParam->tail)
memcpy(pu8CurrByte, pstrSetBeaconParam->tail, pstrSetBeaconParam->tail_len);
pu8CurrByte += pstrSetBeaconParam->tail_len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment