From 7da48eb8d2beac493e8de524a2e07abbd9539aca Mon Sep 17 00:00:00 2001 From: Randell Jesup Date: Sun, 13 Jul 2014 20:48:45 -0400 Subject: [PATCH] Bug 1037911: bustage fix for the other half rs=bustage --- content/media/gmp/GMPParent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/media/gmp/GMPParent.cpp b/content/media/gmp/GMPParent.cpp index d94eb77027f..12969ff4c4a 100644 --- a/content/media/gmp/GMPParent.cpp +++ b/content/media/gmp/GMPParent.cpp @@ -142,7 +142,7 @@ GMPParent::VideoEncoderDestroyed(GMPVideoEncoderParent* aEncoder) MOZ_ASSERT(GMPThread() == NS_GetCurrentThread()); // If the constructor fails, we'll get called before it's added - NS_WARN_IF(!mVideoEncoders.RemoveElement(aEncoder)); + unused << NS_WARN_IF(!mVideoEncoders.RemoveElement(aEncoder)); // Recv__delete__ is on the stack, don't potentially destroy the top-level actor // until after this has completed.