You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2007/02/13 15:31:55 UTC

svn commit: r507022 - /harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/C_Interface.cpp

Author: varlax
Date: Tue Feb 13 06:31:55 2007
New Revision: 507022

URL: http://svn.apache.org/viewvc?view=rev&rev=507022
Log:
Minor postfix after H-3126

Modified:
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/C_Interface.cpp

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/C_Interface.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/C_Interface.cpp?view=diff&rev=507022&r1=507021&r2=507022
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/C_Interface.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/C_Interface.cpp Tue Feb 13 06:31:55 2007
@@ -2756,7 +2756,7 @@
 
 
 static Annotation* lookup_annotation(AnnotationTable* table, Class* owner, Class* antn_type) {
-    for (unsigned i = table->length - 1; i >= 0; --i) {
+    for (int i = table->length - 1; i >= 0; --i) {
         Annotation* antn = table->table[i];
         Type_Info_Handle tih = (Type_Info_Handle) type_desc_create_from_java_descriptor(antn->type->bytes, owner->get_class_loader());
         if (tih) {