Fix style error in dkboolreader.h

Change-Id: I2fac92e356ed1c78039d63e9f8757e7df3d88756
diff --git a/aom_dsp/dkboolreader.h b/aom_dsp/dkboolreader.h
index b3dde01..2bb0723 100644
--- a/aom_dsp/dkboolreader.h
+++ b/aom_dsp/dkboolreader.h
@@ -57,8 +57,8 @@
 
 static INLINE ptrdiff_t aom_dk_reader_tell(const struct aom_dk_reader *r) {
   const size_t bits_read = (r->buffer - r->buffer_start) * CHAR_BIT;
-  const int count = (r->count < LOTS_OF_BITS) ? r->count
-                                              : r->count - LOTS_OF_BITS;
+  const int count =
+      (r->count < LOTS_OF_BITS) ? r->count : r->count - LOTS_OF_BITS;
   return bits_read + BD_VALUE_SIZE - (count + CHAR_BIT);
 }