fixed compilation error in lte-rrc-header.cc on 32 bit systems

This commit is contained in:
Nicola Baldo
2012-12-11 13:28:25 +01:00
parent 8d73a3c194
commit 8719871e90

View File

@@ -1561,7 +1561,7 @@ LteRrcSap::RrcConnectionRequest
RrcConnectionRequestHeader::GetMessage () const
{
RrcConnectionRequest msg;
msg.ueIdentity = (m_mmec.to_ulong () << 32) | (m_mTmsi.to_ulong ());
msg.ueIdentity = (((uint64_t) m_mmec.to_ulong ()) << 32) | (m_mTmsi.to_ulong ());
return msg;
}