mirror of https://gitee.com/bigwinds/arangodb
Fix reference of string
This commit is contained in:
parent
cd8736992c
commit
bae5caf232
|
@ -56,7 +56,7 @@ std::string arangodb::options::EnvironmentTranslator(std::string const& value) {
|
|||
|
||||
if (v == nullptr) {
|
||||
#if _WIN32
|
||||
if (TRI_EqualString(k, "ROOTDIR")) {
|
||||
if (TRI_EqualString(k.c_str(), "ROOTDIR")) {
|
||||
vv = TRI_LocateInstallDirectory();
|
||||
|
||||
if (! vv.empty()) {
|
||||
|
|
Loading…
Reference in New Issue