mirror of
https://github.com/oe7drt/YSFClients.git
synced 2026-03-04 20:13:51 +01:00
Pad the reflector name and description to the correct size.
This commit is contained in:
parent
a3944b5b98
commit
519976995b
|
|
@ -100,6 +100,9 @@ bool CReflectors::load()
|
|||
refl->m_port = (unsigned int)::atoi(p5);
|
||||
refl->m_count = std::string(p6);;
|
||||
|
||||
refl->m_name.resize(16U, ' ');
|
||||
refl->m_desc.resize(14U, ' ');
|
||||
|
||||
m_reflectors.push_back(refl);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue