From 710ad0b9e3931a4b710c58776047d2ef17664591 Mon Sep 17 00:00:00 2001 From: Daniele Forsi Date: Sat, 1 Jun 2024 16:36:54 +0200 Subject: [PATCH] Fix error message All long options must be specified with two hypens. --- sdrbase/mainparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdrbase/mainparser.cpp b/sdrbase/mainparser.cpp index d4ffa9402..3735a5103 100644 --- a/sdrbase/mainparser.cpp +++ b/sdrbase/mainparser.cpp @@ -151,7 +151,7 @@ void MainParser::parse(const QCoreApplication& app) if (m_remoteTCPSink && m_remoteTCPSinkHWType.isEmpty() && m_remoteTCPSinkSerial.isEmpty()) { - qCritical() << "You must specify a device with either -remote-tcp-hwtype or -remote-tcp-serial"; + qCritical() << "You must specify a device with either --remote-tcp-hwtype or --remote-tcp-serial"; exit (EXIT_FAILURE); } }