Fix error message

master
Xavier Arteaga 3 years ago committed by Andre Puschmann
parent e0be361fde
commit 574683e3ef

@ -54,7 +54,7 @@ bool pdcp_entity_lte::configure(const pdcp_config_t& cnfg_)
if (active) { if (active) {
// Already configured // Already configured
if (cnfg_ != cfg) { if (cnfg_ != cfg) {
logger.error("Bearer reconfiguration not supported. LCID=%d.", rrc->get_rb_name(lcid)); logger.error("Bearer reconfiguration not supported. LCID=%s.", rrc->get_rb_name(lcid));
return false; return false;
} }
return true; return true;

@ -46,7 +46,7 @@ bool pdcp_entity_nr::configure(const pdcp_config_t& cnfg_)
if (active) { if (active) {
// Already configured // Already configured
if (cnfg_ != cfg) { if (cnfg_ != cfg) {
logger.error("Bearer reconfiguration not supported. LCID=%d.", rrc->get_rb_name(lcid)); logger.error("Bearer reconfiguration not supported. LCID=%s.", rrc->get_rb_name(lcid));
return false; return false;
} }
return true; return true;

Loading…
Cancel
Save