fix maybe-uninitialized warning

This commit is contained in:
Tom Henderson
2015-08-17 15:31:27 -07:00
parent 1c7a870d29
commit bfb95b39dd

View File

@@ -82,7 +82,7 @@ PeerManagementProtocolMac::Receive (Ptr<Packet> const_packet, const WifiMacHeade
// Beacon shall not be dropped. May be needed to another plugins
return true;
}
uint16_t aid;
uint16_t aid = 0; // applicable only in Confirm message
IeConfiguration config;
if (header.IsAction ())
{