Bug 1408951 - Fix non-unified build in ErrorNames.cpp. r=froydnj

There is no use mozilla namespace statement in this compilation unit, so the
call to GetErrorName() has to be prefixed with the mozilla namespace.

MozReview-Commit-ID: G3caP2v9PFF
This commit is contained in:
Philippe Normand
2017-10-16 11:03:21 +02:00
parent 840e181da6
commit ae596f8a1e

View File

@@ -72,7 +72,7 @@ extern "C" {
void
Gecko_GetErrorName(nsresult aRv, nsACString& aName)
{
GetErrorName(aRv, aName);
mozilla::GetErrorName(aRv, aName);
}
}