diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-10-19 13:01:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-19 13:01:50 +0100 |
commit | a1cd5079fa97b68d781e3c9d279ded6cc9e435c5 (patch) | |
tree | c70f51a0c9fa42c61931fa682e762e03f316d8bd /sal | |
parent | 2191f7688457a0c2b21acf46286bfe86c66b6f1e (diff) |
allow extra arguments
Diffstat (limited to 'sal')
-rw-r--r-- | sal/cppunittester/cppunittester.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/cppunittester/cppunittester.cxx b/sal/cppunittester/cppunittester.cxx index e59fe5ddbbc4..6d1291d7087a 100644 --- a/sal/cppunittester/cppunittester.cxx +++ b/sal/cppunittester/cppunittester.cxx @@ -48,7 +48,7 @@ #include "sal/main.h" SAL_IMPLEMENT_MAIN() { - if (rtl_getAppCommandArgCount() != 1) { + if (rtl_getAppCommandArgCount() < 1) { std::cerr << "Usage: cppunittester <shared-library-path>" << std::endl; return EXIT_FAILURE; } |