From 14afd7785ef61b731dd8e682bba99f1eef4c569f Mon Sep 17 00:00:00 2001 From: "bzbarsky%mit.edu" Date: Thu, 20 Mar 2003 03:40:26 +0000 Subject: [PATCH] fix build bustage --- xpcom/ds/nsCOMArray.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcom/ds/nsCOMArray.cpp b/xpcom/ds/nsCOMArray.cpp index 385ebc34991..4054426e62a 100644 --- a/xpcom/ds/nsCOMArray.cpp +++ b/xpcom/ds/nsCOMArray.cpp @@ -87,7 +87,7 @@ nsCOMArray_base::ReplaceObjectAt(nsISupports* aObject, PRInt32 aIndex) { // its ok if oldObject is null here nsISupports *oldObject = - NS_REINTERPRET_CAST(nsISupports*, mArrray.SafeElementAt(aIndex)); + NS_REINTERPRET_CAST(nsISupports*, mArray.SafeElementAt(aIndex)); PRBool result = mArray.ReplaceElementAt(aObject, aIndex);