Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b43b245f authored by Matthias Beyer's avatar Matthias Beyer Committed by Greg Kroah-Hartman
Browse files

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

parent babb7f94
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -783,8 +783,9 @@ static ULONG PhsCompress(IN void *pvContext,
		pstPhsRule->PHSModifiedBytes +=
		pstPhsRule->PHSModifiedBytes +=
			*pOldHeaderSize - *pNewHeaderSize - 1;
			*pOldHeaderSize - *pNewHeaderSize - 1;
		pstPhsRule->PHSModifiedNumPackets++;
		pstPhsRule->PHSModifiedNumPackets++;
	} else
	} else {
		pstPhsRule->PHSErrorNumPackets++;
		pstPhsRule->PHSErrorNumPackets++;
	}


	return lStatus;
	return lStatus;
}
}