From e2d9fc4dcc9d4f9bc3daefdaaa55e36e34fac7af Mon Sep 17 00:00:00 2001 From: Andrey Morozov Date: Fri, 7 Sep 2012 18:01:06 +0400 Subject: [PATCH] fixed compile error under linux --- modules/ts/src/ts_perf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ts/src/ts_perf.cpp b/modules/ts/src/ts_perf.cpp index 0bb5d9c..84f414a 100644 --- a/modules/ts/src/ts_perf.cpp +++ b/modules/ts/src/ts_perf.cpp @@ -534,7 +534,7 @@ void TestBase::Init(int argc, const char* const argv[]) param_max_outliers = std::min(100., std::max(0., args.get("perf_max_outliers"))); param_min_samples = std::max(1u, args.get("perf_min_samples")); param_max_deviation = std::max(0., args.get("perf_max_deviation")); - param_seed = args.get("perf_seed"); + param_seed = args.get("perf_seed"); param_time_limit = std::max(0., args.get("perf_time_limit")); param_force_samples = args.get("perf_force_samples"); param_write_sanity = args.has("perf_write_sanity"); -- 2.7.4