From 08a5c58cdc20d2e799dfcfc458fa4d0d46c1bef3 Mon Sep 17 00:00:00 2001 From: "alecf%netscape.com" Date: Wed, 2 Jun 1999 04:46:07 +0000 Subject: [PATCH] fix windows bustage git-svn-id: svn://10.0.0.236/trunk@33410 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/tests/TestArray.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/xpcom/tests/TestArray.cpp b/mozilla/xpcom/tests/TestArray.cpp index 1419d0c1ec6..ac88b3602da 100644 --- a/mozilla/xpcom/tests/TestArray.cpp +++ b/mozilla/xpcom/tests/TestArray.cpp @@ -141,7 +141,7 @@ int main(int argc, char *argv[]) AssertEqual(index, expectedIndex[count])); while (-1 != index) { count++; - index = array->IndexOf(foo, index + 1); + index = array->IndexOfStartingAt(foo, index + 1); if (-1 != index) fprintf(stdout, "IndexOf(foo): %d=%d %s\n", index, expectedIndex[count], AssertEqual(index, expectedIndex[count]));