Bug 761297 - Followup: Fix build warning in opt builds.

This commit is contained in:
Ms2ger 2012-06-06 12:34:46 +02:00
Родитель 476194b061
Коммит ae5b3e7557
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -14,6 +14,10 @@
#include "nsIContent.h"
#include "nsComponentManagerUtils.h"
#include "mozilla/Util.h"
using namespace mozilla;
#ifdef NS_DEBUG
static bool gNoisy = false;
#endif
@ -64,7 +68,7 @@ NS_IMETHODIMP DeleteRangeTxn::Init(nsIEditor *aEditor,
mRange = do_QueryInterface(aRange);
mRangeUpdater = aRangeUpdater;
nsresult result = aRange->GetStartContainer(getter_AddRefs(mStartParent));
DebugOnly<nsresult> result = aRange->GetStartContainer(getter_AddRefs(mStartParent));
NS_ASSERTION((NS_SUCCEEDED(result)), "GetStartParent failed.");
result = aRange->GetEndContainer(getter_AddRefs(mEndParent));
NS_ASSERTION((NS_SUCCEEDED(result)), "GetEndParent failed.");