Changed variable type for callsign

This commit is contained in:
phl0
2016-04-20 21:23:51 +02:00
parent 6e4a7f5e9b
commit 991065fb0c
3 changed files with 6 additions and 6 deletions

View File

@@ -590,7 +590,7 @@ void CMMDVMHost::createDisplay()
LogInfo(" Port: %s", port.c_str());
LogInfo(" Brightness: %u", brightness);
m_display = new CNextion(callsign.c_str(), dmrid, port, brightness);
m_display = new CNextion(callsign, dmrid, port, brightness);
#if defined(HD44780)
} else if (type == "HD44780") {
unsigned int rows = m_conf.getHD44780Rows();