summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-04-09 01:59:02 +0200
committerMoonchild <moonchild@palemoon.org>2022-04-09 01:59:02 +0200
commite10f9df9df3c71e1c1c8424d56f4967969a02c14 (patch)
tree8e5c328565ed885a01190563ec0f9190d5c9ce51
parent7d87b7a27002a6b0b1ded74a69f70c1c60545199 (diff)
downloaduxp-e10f9df9df3c71e1c1c8424d56f4967969a02c14.tar.gz
Fix typo
-rw-r--r--xpcom/threads/nsProcessCommon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xpcom/threads/nsProcessCommon.cpp b/xpcom/threads/nsProcessCommon.cpp
index 033c358d8d..7d490c5952 100644
--- a/xpcom/threads/nsProcessCommon.cpp
+++ b/xpcom/threads/nsProcessCommon.cpp
@@ -281,7 +281,7 @@ nsProcess::ProcessComplete()
const char* topic;
{ // Lock scope
- MutextAutoLock lock(mLock);
+ MutexAutoLock lock(mLock);
if (mExitValue < 0) {
topic = "process-failed";
} else {