OSDN Git Service

Fix build, missing spaces around =/<.
authorMingyao Yang <mingyao@google.com>
Wed, 23 Jul 2014 00:33:25 +0000 (17:33 -0700)
committerAndreas Gampe <agampe@google.com>
Tue, 29 Jul 2014 21:44:23 +0000 (14:44 -0700)
(cherry picked from commit 1a12858eb15a14788478c4aca82c052bc84fcafa)

Change-Id: Id2d276cd1fb8bb95c46ff5ceacc7cfe1f5acf192

runtime/class_linker.cc

index e0fa0f8..c8d1f50 100644 (file)
@@ -3879,7 +3879,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 {