Skip to content

Commit

Permalink
Remove warning
Browse files Browse the repository at this point in the history
  • Loading branch information
be1 committed Oct 28, 2020
1 parent 5e754c6 commit 6cb81a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion liquidmainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@ void LiquidMainWindow::onLoaderFinished()
if (ccs.size()) {
qDebug() << ccs.size() << "ccs";
for (const auto& cc_info : ccs) {
message.sprintf(" • CC #%d", cc_info.cc());
message.append(" • CC #%d");
message = message.arg(cc_info.cc());
if (cc_info.has_label()) {
message.append(" - ");
message.append(cc_info.label().c_str());
Expand Down

0 comments on commit 6cb81a0

Please sign in to comment.