Bug-fix TB information erroneus order of initializion in LteSpectrumPhy::AddExpectedTb
authorMarco Miozzo <marco.miozzo@cttc.es>
Thu, 13 Dec 2012 15:06:22 +0100
changeset 9526 be42ff0d25cb
parent 9522 4b881d651a45
child 9527 10c1b7340221
Bug-fix TB information erroneus order of initializion in LteSpectrumPhy::AddExpectedTb
src/lte/model/lte-spectrum-phy.cc
--- a/src/lte/model/lte-spectrum-phy.cc	Thu Dec 13 12:23:50 2012 +0100
+++ b/src/lte/model/lte-spectrum-phy.cc	Thu Dec 13 15:06:22 2012 +0100
@@ -802,7 +802,7 @@
       m_expectedTbs.erase (it);
     }
   // insert new entry
-  tbInfo_t tbInfo = {ndi, size, mcs, map, harqId, 0.0, rv, downlink, false};
+  tbInfo_t tbInfo = {ndi, size, mcs, map, harqId, rv, 0.0, downlink, false};
   m_expectedTbs.insert (std::pair<TbId_t, tbInfo_t> (tbId,tbInfo));
 }