VIXL Release 1.13
Refer to the README.md and LICENCE files for details.
Change-Id: I922914f4e7da7cb939a8054cded11feb9ea51a86
diff --git a/src/vixl/code-buffer.cc b/src/vixl/code-buffer.cc
index bb83975..1c90c74 100644
--- a/src/vixl/code-buffer.cc
+++ b/src/vixl/code-buffer.cc
@@ -76,7 +76,7 @@
const size_t padding_size = end - cursor_;
VIXL_ASSERT(RemainingBytes() >= padding_size);
VIXL_ASSERT(padding_size <= 4);
- const byte padding[] = { 0, 0, 0, 0};
+ const byte padding[] = {0, 0, 0, 0};
dirty_ = true;
memcpy(cursor_, padding, padding_size);
cursor_ = end;