Staging: bcm: PHSModule.c: Added missing braces around else block

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Matthias Beyer 2014-07-15 09:43:04 +02:00 committed by Greg Kroah-Hartman
parent babb7f9479
commit b43b245fb3

View file

@ -783,8 +783,9 @@ static ULONG PhsCompress(IN void *pvContext,
pstPhsRule->PHSModifiedBytes +=
*pOldHeaderSize - *pNewHeaderSize - 1;
pstPhsRule->PHSModifiedNumPackets++;
} else
} else {
pstPhsRule->PHSErrorNumPackets++;
}
return lStatus;
}