mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-07-29 05:24:18 -04:00
appbench, appsrv: Fix malformed QCoreApplication::applicationVersion() call
Remove an inadvertent '>' character from the QCoreApplication::applicationVersion() call in the startup version logging for both appbench and appsrv. This typo was identified by cppcheck during static analysis. Correcting the expression restores valid C++ syntax, allowing the applications to compile correctly and report their version information in the startup log. Signed-off-by: Robin Getz <rgetz503@gmail.com>
This commit is contained in:
+1
-1
@@ -92,7 +92,7 @@ static int runQtApplication(int argc, char* argv[], qtwebapp::LoggerWithFile *lo
|
||||
#else
|
||||
qInfo("%s %s Qt %s %db DSP Rx:%db Tx:%db PID %lld",
|
||||
qPrintable(QCoreApplication::applicationName()),
|
||||
qPrintable(QCoreApplication::>applicationVersion()),
|
||||
qPrintable(QCoreApplication::applicationVersion()),
|
||||
qPrintable(QString(QT_VERSION_STR)),
|
||||
QT_POINTER_SIZE*8,
|
||||
SDR_RX_SAMP_SZ,
|
||||
|
||||
+1
-1
@@ -175,7 +175,7 @@ static int runQtApplication(int argc, char* argv[], qtwebapp::LoggerWithFile *lo
|
||||
#else
|
||||
qInfo("%s %s Qt %s %db DSP Rx:%db Tx:%db PID %lld",
|
||||
qPrintable(QCoreApplication::applicationName()),
|
||||
qPrintable(QCoreApplication::>applicationVersion()),
|
||||
qPrintable(QCoreApplication::applicationVersion()),
|
||||
qPrintable(QString(QT_VERSION_STR)),
|
||||
QT_POINTER_SIZE*8,
|
||||
SDR_RX_SAMP_SZ,
|
||||
|
||||
Reference in New Issue
Block a user