Skip to content

Commit

Permalink
clazy: Use qstring multi-arg overload to save memory allocations.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Feb 3, 2024
1 parent 7e819b6 commit 40f6434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/tv_rec.cpp
Expand Up @@ -3195,7 +3195,7 @@ bool TVRec::QueueEITChannelChange(const QString &name)

LOG(VB_CHANNEL, LOG_INFO, LOC +
QString("QueueEITChannelChange(%1) -- end --> %2")
.arg(name).arg(ok ? "done" : "failed"));
.arg(name, ok ? "done" : "failed"));

return ok;
}
Expand Down

0 comments on commit 40f6434

Please sign in to comment.