Skip to content

Commit

Permalink
fix: build error on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
rankun committed Aug 2, 2020
1 parent 6ac8973 commit 9290348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QtScrcpy/device/controller/inputconvert/keymap/keymap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ void KeyMap::loadKeyMap(const QString &json)

for (int i = 0; i < clickNodes.size(); i++) {
if (i >= MAX_DELAY_CLICK_NODES) {
qInfo("clickNodes too much, up to %1", MAX_DELAY_CLICK_NODES);
qInfo() << "clickNodes too much, up to " << MAX_DELAY_CLICK_NODES;
break;
}
clickNode = clickNodes.at(i).toObject();
Expand Down

0 comments on commit 9290348

Please sign in to comment.