diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-02-02 15:59:54 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-02-02 15:59:54 +0000 |
commit | c6ea3df0aec99fdbd99e3b547268161c73ac2255 (patch) | |
tree | d83cbe9e2bd8bbe46d55b5af9bb60e38a835b74f | |
parent | fuzz_tests: fix an uninitialized var in setup (diff) | |
download | monero-c6ea3df0aec99fdbd99e3b547268161c73ac2255.tar.xz |
performance_tests: remove add_arg call stray extra param
Coverity 182572
-rw-r--r-- | tests/performance_tests/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/performance_tests/main.cpp b/tests/performance_tests/main.cpp index d1b79d026..faf87f9de 100644 --- a/tests/performance_tests/main.cpp +++ b/tests/performance_tests/main.cpp @@ -84,7 +84,7 @@ int main(int argc, char** argv) po::options_description desc_options("Command line options"); const command_line::arg_descriptor<std::string> arg_filter = { "filter", "Regular expression filter for which tests to run" }; - command_line::add_arg(desc_options, arg_filter, ""); + command_line::add_arg(desc_options, arg_filter); po::variables_map vm; bool r = command_line::handle_error_helper(desc_options, [&]() |