mirror of https://gitee.com/bigwinds/arangodb
fix warning about potentially unintialised variable
This commit is contained in:
parent
741510e8cb
commit
32dc7a2db2
|
@ -384,7 +384,7 @@ int main (int argc, char* argv[]) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// import type
|
// import type
|
||||||
bool ok;
|
bool ok = false;
|
||||||
|
|
||||||
if (TypeImport == "csv") {
|
if (TypeImport == "csv") {
|
||||||
cout << "Starting CSV import..." << endl;
|
cout << "Starting CSV import..." << endl;
|
||||||
|
|
Loading…
Reference in New Issue