OSDN Git Service

Fix build, missing spaces around =/<.
authorMingyao Yang <mingyao@google.com>
Wed, 23 Jul 2014 00:33:25 +0000 (17:33 -0700)
committerMingyao Yang <mingyao@google.com>
Wed, 23 Jul 2014 00:33:25 +0000 (17:33 -0700)
Change-Id: I2e7824075626a07eccb0a5eb77ef157214fe70fb

runtime/class_linker.cc

index d1c158b..7f89156 100644 (file)
@@ -4128,7 +4128,7 @@ bool ClassLinker::LinkVirtualMethods(Thread* self, Handle<mirror::Class> klass)
         return false;
       }
       int len = super_class->GetVTableLength();
-      for (int i=0; i<len; i++) {
+      for (int i = 0; i < len; i++) {
         vtable->Set<false>(i, super_class->GetVTableEntry(i));
       }
     } else {