Fix bugs introduced in a previous patch

Introduced in I2c0bc4ba540886dd196e87a78b205407ad3e866b

Change-Id: I9ff49e7d37c5a1fea8dc8b5659a53697f76320df
diff --git a/av1/encoder/rd.c b/av1/encoder/rd.c
index 6370592..e1e1595 100644
--- a/av1/encoder/rd.c
+++ b/av1/encoder/rd.c
@@ -577,8 +577,8 @@
         t_above[i] =
             !!(*(const uint64_t *)&above[i] | *(const uint64_t *)&above[i + 8]);
       for (i = 0; i < num_4x4_h; i += 16)
-        t_left[i] = !!(*(const uint64_t *)&left[i] |
-                       *(const uint64_t *)&left[i + 8];
+        t_left[i] =
+            !!(*(const uint64_t *)&left[i] | *(const uint64_t *)&left[i + 8]);
       break;
 #endif  // CONFIG_TX64X64
     case TX_4X8: