diff options
author | Joe George <joe@zeroc.com> | 2016-12-21 12:02:17 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-12-21 12:02:17 -0500 |
commit | c74ba7e205fd000f37fa78e833d11fd3aa0750d3 (patch) | |
tree | 52096c48fd8106429a677c38e1caa7e41c5091ea /cpp/test/IceUtil/stacktrace/Client.cpp | |
parent | Fixed IceBinDist check from HttpServer.js (diff) | |
download | ice-c74ba7e205fd000f37fa78e833d11fd3aa0750d3.tar.bz2 ice-c74ba7e205fd000f37fa78e833d11fd3aa0750d3.tar.xz ice-c74ba7e205fd000f37fa78e833d11fd3aa0750d3.zip |
Fix typo
Diffstat (limited to 'cpp/test/IceUtil/stacktrace/Client.cpp')
-rw-r--r-- | cpp/test/IceUtil/stacktrace/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceUtil/stacktrace/Client.cpp b/cpp/test/IceUtil/stacktrace/Client.cpp index 6351ea12114..3284dc0ee62 100644 --- a/cpp/test/IceUtil/stacktrace/Client.cpp +++ b/cpp/test/IceUtil/stacktrace/Client.cpp @@ -152,7 +152,7 @@ int main(int argc, char* argv[]) vector<wchar_t> buf(256); DWORD ret = GetEnvironmentVariableW(L"ICE_BIN_DIST", &buf[0], static_cast<DWORD>(buf.size())); string valstr = (ret > 0 && ret < buf.size()) ? wstringToString(&buf[0]) : string(""); - binDist = (valstr.find("all") != std::string::npos) || == (valstr.find("cpp") != std::string::npos); + binDist = (valstr.find("all") != std::string::npos) || (valstr.find("cpp") != std::string::npos); if(binDist) { |