Fix cpplint whitespace/indent issues

Change-Id: I7c1647f0c39e1e065ca5820f9b79998691ba40b1
diff --git a/runtime/dex_instruction.cc b/runtime/dex_instruction.cc
index a36d7c5..be5fcc6 100644
--- a/runtime/dex_instruction.cc
+++ b/runtime/dex_instruction.cc
@@ -56,11 +56,11 @@
 
 int const Instruction::kInstructionSizeInCodeUnits[] = {
 #define INSTRUCTION_SIZE(opcode, c, p, format, r, i, a, v) \
-  ((opcode == NOP)                        ? -1 : \
-   ((format >= k10x) && (format <= k10t)) ? 1 : \
-   ((format >= k20t) && (format <= k22c)) ? 2 : \
-   ((format >= k32x) && (format <= k3rc)) ? 3 : \
-    (format == k51l)                      ? 5 : -1),
+    ((opcode == NOP)                        ? -1 : \
+     ((format >= k10x) && (format <= k10t)) ?  1 : \
+     ((format >= k20t) && (format <= k22c)) ?  2 : \
+     ((format >= k32x) && (format <= k3rc)) ?  3 : \
+      (format == k51l)                      ?  5 : -1),
 #include "dex_instruction_list.h"
   DEX_INSTRUCTION_LIST(INSTRUCTION_SIZE)
 #undef DEX_INSTRUCTION_LIST