Skip to content

Commit

Permalink
qmlui: fix to build with Qt5
Browse files Browse the repository at this point in the history
  • Loading branch information
mcallegari committed Mar 30, 2022
1 parent c83a2f1 commit 3aee3d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qmlui/tardis/tardis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ void Tardis::run()

m_historyIndex = m_history.count() - 1;

qDebug("Got action: 0x%02X, history length: %d (%llu)", action.m_action, m_historyCount, m_history.count());
qDebug("Got action: 0x%02X, history length: %d (%d)", action.m_action, m_historyCount, int(m_history.count()));

/* If there are active network connections, send the action there too */
forwardActionToNetwork(action.m_action, action);
Expand Down

0 comments on commit 3aee3d8

Please sign in to comment.