Fix diff cut&paste syntax error that mcs didnt notice
authorDick Porter <dick@acm.org>
Mon, 11 Aug 2003 14:51:06 +0000 (14:51 -0000)
committerDick Porter <dick@acm.org>
Mon, 11 Aug 2003 14:51:06 +0000 (14:51 -0000)
svn path=/trunk/mcs/; revision=17254

mcs/class/corlib/System/Array.cs

index 7d833e8deb6f8139fa8846f76f04165477455cf8..c64a840d7f5d95dc413afe33e542810b97040bdf 100644 (file)
@@ -426,7 +426,7 @@ namespace System
                                        int iMid = (iMin + iMax) / 2;
                                        object elt = array.GetValueImpl (iMid);
 
-+                                      iCmp = comparer.Compare (value, elt);
+                                       iCmp = comparer.Compare (value, elt);
 
                                        if (iCmp == 0)
                                                return iMid;