summaryrefslogtreecommitdiff
path: root/indra/llcommon/StackWalker.cpp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2020-01-17 09:49:12 -0500
committerNat Goodspeed <nat@lindenlab.com>2020-01-17 09:49:12 -0500
commita6543d6a3dc1709cc85f86b159e00f612357be80 (patch)
treea1873432500d416a8bc8b87f10a4eef0b3040420 /indra/llcommon/StackWalker.cpp
parent87504be07d77911377e8317fa49285cbc8db7ca0 (diff)
DRTVWR-476: Never mind UTF8, replace non-ASCII chars with ASCII.
Diffstat (limited to 'indra/llcommon/StackWalker.cpp')
-rw-r--r--indra/llcommon/StackWalker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/StackWalker.cpp b/indra/llcommon/StackWalker.cpp
index 40eff0ea7b..a87dad2e75 100644
--- a/indra/llcommon/StackWalker.cpp
+++ b/indra/llcommon/StackWalker.cpp
@@ -657,7 +657,7 @@ private:
pGMI = (tGMI) GetProcAddress( hPsapi, "GetModuleInformation" );
if ( (pEPM == NULL) || (pGMFNE == NULL) || (pGMBN == NULL) || (pGMI == NULL) )
{
- // we couldn“t find all functions
+ // we couldn't find all functions
FreeLibrary(hPsapi);
return FALSE;
}