Commit 826264ea authored by Lionel Gauthier's avatar Lionel Gauthier

patches13/0014-fix-wrong-use-of-boolean-and.patch

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7060 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent fb9f84c3
......@@ -199,7 +199,7 @@ boolean_t pdcp_serialize_control_pdu_for_pdcp_status_report(unsigned char* pdu_b
* Fill `First Missing PDU SN' field
*/
pdu_buffer[0] |= ((pdu->first_missing_sn >> 8) & 0xFF);
pdu_buffer[1] |= (pdu->first_missing_sn && 0xFF);
pdu_buffer[1] |= (pdu->first_missing_sn & 0xFF);
/*
* Append `bitmap'
......
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