formatting

This commit is contained in:
Francisco Paisana 2019-06-20 13:41:45 +01:00 committed by Andre Puschmann
parent 62eb96366c
commit 46d298fd9a
2 changed files with 4 additions and 4 deletions

View File

@ -119,10 +119,10 @@ int ue::init(const all_args_t& args_, srslte::logger* logger_)
}
// move ownership
stack = std::move(lte_stack);
stack = std::move(lte_stack);
gw_inst = std::move(gw_ptr);
phy = std::move(lte_phy);
radio = std::move(lte_radio);
phy = std::move(lte_phy);
radio = std::move(lte_radio);
} else {
log.console("Invalid stack type %s. Supported values are [lte].\n", args.stack.type.c_str());
return SRSLTE_ERROR;

View File

@ -277,7 +277,7 @@ int mme_attach_request_test()
nas.init(&usim, &rrc_dummy, &gw, &nas_log, nas_cfg);
gw_args_t gw_args;
gw_args.tun_dev_name = "tun0";
gw_args.tun_dev_name = "tun0";
gw_args.log.gw_level = "debug";
gw_args.log.gw_hex_limit = 100000;
srslte::logger_stdout def_logstdout;