Selaa lähdekoodia

fix default bufferSize value

Murat Dogan 4 vuotta sitten
vanhempi
commit
4dc0e59309
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      examples/client-benchmark/parse_cl.cpp

+ 1 - 1
examples/client-benchmark/parse_cl.cpp

@@ -67,7 +67,7 @@ Cmdline::Cmdline(int argc, char *argv[]) // ISO C++17 not allowed: throw (std::s
 	_o = false;
 	_p = false;
 	_r = 300;
-	_b = 3000;
+	_b = 0;
 
 	optind = 0;
 	while ((c = getopt_long(argc, argv, "s:t:w:x:d:r:b:enhvop", long_options, &optind)) != -1) {