From 310b81cbe252aca29ff01129ac85c3d6bb030820 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Thu, 8 Jun 2017 19:26:39 +0300 Subject: [PATCH] lte: Fix a typo: "Bandwitdh" -> "Bandwidth" --- src/lte/examples/lena-cc-helper.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lte/examples/lena-cc-helper.cc b/src/lte/examples/lena-cc-helper.cc index d024a0f0c..741c4788a 100644 --- a/src/lte/examples/lena-cc-helper.cc +++ b/src/lte/examples/lena-cc-helper.cc @@ -68,8 +68,8 @@ int main (int argc, char *argv[]) void Print ( ComponentCarrier cc) { - std::cout << " UlBandwitdh " << uint16_t (cc.GetUlBandwidth ()) - << " DlBandwitdh " << uint16_t (cc.GetDlBandwidth ()) + std::cout << " UlBandwidth " << uint16_t (cc.GetUlBandwidth ()) + << " DlBandwidth " << uint16_t (cc.GetDlBandwidth ()) << " Dl Earfcn " << cc.GetDlEarfcn () << " Ul Earfcn " << cc.GetUlEarfcn () << " - Is this the Primary Channel? " << cc.IsPrimary ()