diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 4d5e6737660778102a57a9239c2629d8321ef820..91fb124d2c201c81554c4e8b7b8cbd1e76c664b7 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -497,13 +497,13 @@ void LLAppViewerWin32::disableWinErrorReporting() { std::string executable_name = gDirUtilp->getExecutableFilename(); - if( S_OK == WerAddExcludedApplication( ll_convert_string_to_wide(executable_name).c_str(), FALSE ) ) + if( S_OK == WerRemoveExcludedApplication( ll_convert_string_to_wide(executable_name).c_str(), FALSE ) ) { - LL_INFOS() << "WerAddExcludedApplication() succeeded for " << executable_name << LL_ENDL; + LL_INFOS() << "WerRemoveExcludedApplication() succeeded for " << executable_name << LL_ENDL; } else { - LL_INFOS() << "WerAddExcludedApplication() failed for " << executable_name << LL_ENDL; + LL_INFOS() << "WerRemoveExcludedApplication() failed for " << executable_name << LL_ENDL; } }