Fix format string in log_frame.cpp

This commit is contained in:
Nekotekina 2020-01-06 23:44:48 +03:00
parent 55f9a56e45
commit c51779d4d3

View File

@ -363,7 +363,7 @@ void log_frame::CreateAndConnectActions()
}
else
{
text = fmt::format("%s > %s\n", "Ch.%d", m_tty_channel, text);
text = fmt::format("Ch.%d > %s\n", m_tty_channel, text);
}
if (g_tty)