Skip to content

Commit

Permalink
Fix missing arg in string
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 25, 2024
1 parent b7edafd commit 761d51f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/o0baseauth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ int O0BaseAuth::localPort() {
}

void O0BaseAuth::setLocalPort(int value) {
log( QStringLiteral( "O0BaseAuth::setLocalPort:" ).arg( value ) );
log( QStringLiteral( "O0BaseAuth::setLocalPort:%1" ).arg( value ) );
localPort_ = static_cast<quint16>(value);
Q_EMIT localPortChanged();
}
Expand Down

0 comments on commit 761d51f

Please sign in to comment.