diff --git a/src/wifi/examples/wifi-phy-test.cc b/src/wifi/examples/wifi-phy-test.cc index c99330b10..9d704474e 100644 --- a/src/wifi/examples/wifi-phy-test.cc +++ b/src/wifi/examples/wifi-phy-test.cc @@ -21,7 +21,7 @@ #include "ns3/yans-wifi-channel.h" #include "ns3/propagation-loss-model.h" #include "ns3/propagation-delay-model.h" -#include "ns3/yans-error-rate-model.h" +#include "ns3/nist-error-rate-model.h" #include "ns3/constant-position-mobility-model.h" #include "ns3/simulator.h" #include "ns3/command-line.h" @@ -105,7 +105,7 @@ PsrExperiment::Run (struct PsrExperiment::Input input) Ptr tx = CreateObject (); Ptr rx = CreateObject (); - Ptr error = CreateObject (); + Ptr error = CreateObject (); tx->SetErrorRateModel (error); rx->SetErrorRateModel (error); tx->SetChannel (channel); @@ -250,7 +250,7 @@ CollisionExperiment::Run (struct CollisionExperiment::Input input) Ptr txB = CreateObject (); Ptr rx = CreateObject (); - Ptr error = CreateObject (); + Ptr error = CreateObject (); txA->SetErrorRateModel (error); txB->SetErrorRateModel (error); rx->SetErrorRateModel (error);