summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Keller <Rainer.Keller@qt.io>2017-08-23 10:33:10 +0200
committerRainer Keller <Rainer.Keller@qt.io>2017-08-23 09:33:04 +0000
commitd58e21abe213b727d56b5ab869def70204ff01ec (patch)
tree5a067e324b4e4f23017f9984dccca9492c993c6c
parentdcb14d907d7ae514d840397e2be5f0245d42dd44 (diff)
Fix error message
Message does not match the parameter names. Change-Id: Ie9d3c52487f596dc43c7b36e4a5bc3ee5fbdaa47 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index c1d5391..ef1626f 100644
--- a/main.cpp
+++ b/main.cpp
@@ -435,7 +435,7 @@ int main(int argc, char **argv)
}
if (detach && (useGDB || useQML)) {
- fprintf(stderr, "Detached debugging not possible. --detach and one of --useGDB, --useQML must not be used together.\n");
+ fprintf(stderr, "Detached debugging not possible. --detach and one of --debug-gdb, --debug-qml must not be used together.\n");
return 1;
}