summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2010-12-09 10:24:47 +1000
committerRhys Weatherley <rhys.weatherley@nokia.com>2010-12-09 10:24:47 +1000
commite57f248f34e4742fa73a123c7ed8366f74a08f50 (patch)
tree3110fc6705664ba226e91bc08e67e2e8a82bc327 /src
parentaf3a7a764686554e86da7dda7f2d17111abc8409 (diff)
Fix program name in warning message
Diffstat (limited to 'src')
-rw-r--r--src/quicktestlib/qdeclarativetest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quicktestlib/qdeclarativetest.cpp b/src/quicktestlib/qdeclarativetest.cpp
index abd3128..ed0f12e 100644
--- a/src/quicktestlib/qdeclarativetest.cpp
+++ b/src/quicktestlib/qdeclarativetest.cpp
@@ -121,7 +121,7 @@ int qtest_quick_main(int argc, char **argv, const char *name, qtest_create_viewp
// Bail out if we didn't find any test cases.
if (files.isEmpty()) {
- qWarning() << argv[1] << ": could not find any test cases under"
+ qWarning() << argv[0] << ": could not find any test cases under"
<< testPath;
return 1;
}