summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPale Moon <git-repo@palemoon.org>2018-05-15 20:28:55 +0200
committerPale Moon <git-repo@palemoon.org>2018-05-15 20:28:55 +0200
commitba2e7f6142b396273343a942f5f92d18a33cd1aa (patch)
tree70650f3b57510748fd5c38fc0aa4bb8be2436e4e
parentada77e595653dc37e2f4fa9f1324b9c9b32417c0 (diff)
downloadpalemoon-gre-ba2e7f6142b396273343a942f5f92d18a33cd1aa.tar.gz
Change MOZ_ASSERT to MOZ_RELEASE_ASSERT.
-rw-r--r--gfx/2d/FilterNodeSoftware.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gfx/2d/FilterNodeSoftware.cpp b/gfx/2d/FilterNodeSoftware.cpp
index 6b30fcfc8..6fd6aeb11 100644
--- a/gfx/2d/FilterNodeSoftware.cpp
+++ b/gfx/2d/FilterNodeSoftware.cpp
@@ -2694,7 +2694,7 @@ FilterNodeArithmeticCombineSoftware::SetAttribute(uint32_t aIndex,
uint32_t aSize)
{
MOZ_ASSERT(aIndex == ATT_ARITHMETIC_COMBINE_COEFFICIENTS);
- MOZ_ASSERT(aSize == 4);
+ MOZ_RELEASE_ASSERT(aSize == 4);
mK1 = aFloat[0];
mK2 = aFloat[1];