Commit fb568755 authored by Roman Donchenko's avatar Roman Donchenko Committed by OpenCV Buildbot

Merge pull request #1898 from berak:b_3349_24

parents 0bbd768d 059bf1d9
...@@ -70,7 +70,7 @@ int main(int argc, const char *argv[]) { ...@@ -70,7 +70,7 @@ int main(int argc, const char *argv[]) {
cout << "usage: " << argv[0] << " <csv.ext> <output_folder> " << endl; cout << "usage: " << argv[0] << " <csv.ext> <output_folder> " << endl;
exit(1); exit(1);
} }
string output_folder; string output_folder = ".";
if (argc == 3) { if (argc == 3) {
output_folder = string(argv[2]); output_folder = string(argv[2]);
} }
......
...@@ -70,7 +70,7 @@ int main(int argc, const char *argv[]) { ...@@ -70,7 +70,7 @@ int main(int argc, const char *argv[]) {
cout << "usage: " << argv[0] << " <csv.ext> <output_folder> " << endl; cout << "usage: " << argv[0] << " <csv.ext> <output_folder> " << endl;
exit(1); exit(1);
} }
string output_folder; string output_folder = ".";
if (argc == 3) { if (argc == 3) {
output_folder = string(argv[2]); output_folder = string(argv[2]);
} }
......
...@@ -70,7 +70,7 @@ int main(int argc, const char *argv[]) { ...@@ -70,7 +70,7 @@ int main(int argc, const char *argv[]) {
cout << "usage: " << argv[0] << " <csv.ext> <output_folder> " << endl; cout << "usage: " << argv[0] << " <csv.ext> <output_folder> " << endl;
exit(1); exit(1);
} }
string output_folder; string output_folder = ".";
if (argc == 3) { if (argc == 3) {
output_folder = string(argv[2]); output_folder = string(argv[2]);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment