2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 14:38:15 +00:00

Beta version 2.6.2: Fix build.

This commit is contained in:
John Preston
2021-03-13 21:05:53 +04:00
parent ab2c99acf3
commit 9a73c99935
2 changed files with 2 additions and 2 deletions

View File

@@ -549,7 +549,7 @@ void writeDebug(const char *file, int32 line, const QString &v) {
file = found + 1;
}
QString msg(QString("%1 %2 (%3 : %4)\n").arg(_logsEntryStart(), v, file, line));
QString msg(QString("%1 %2 (%3 : %4)\n").arg(_logsEntryStart(), v, file, QString::number(line)));
_logsWrite(LogDataDebug, msg);
#ifdef Q_OS_WIN