newblue: Fix -Wmisleading-indentation warning

Fix the following warning introduced in the new llvm-next compiler:

vendorLib.c:451:17: error: misleading indentation; statement is not part
of the previous 'if' [-Werror,-Wmisleading-indentation]
            for(i = 0; i < sz; i++) {
            ^
vendorLib.c:448:13: note: previous statement is here
            if (!sz)
            ^
1 error generated.

BUG=chromium:1041755
TEST=emerge-kevin newblue passed

Change-Id: If23107ec2374146cffca8c911c2489eff7522337
diff --git a/vendorLib.c b/vendorLib.c
index df8f45b..f4d5b4e 100644
--- a/vendorLib.c
+++ b/vendorLib.c
@@ -445,8 +445,8 @@
                 char line[128];
                 uint32_t i;
 
-            if (!sz)
-                sprintf(line, "vRX (%u) <ZLP>", buf[0]);
+                if (!sz)
+                    sprintf(line, "vRX (%u) <ZLP>", buf[0]);
 
                 for(i = 0; i < sz; i++) {
                     if (i & 15)