summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2017-01-14 15:49:27 -0800
committerYamaArashi <shadow962@live.com>2017-01-14 15:49:27 -0800
commit9049b839ca3b5b65f4530226f56f35322a3bcae7 (patch)
treecd4f8254da55a9ff5a571df784925d382f1403c5
parent01fd6b7c400423efa2762d1bf93d64968e20b5b6 (diff)
remove explicit array size
-rw-r--r--src/string_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_util.c b/src/string_util.c
index 4cb7ad7f1..258077c9f 100644
--- a/src/string_util.c
+++ b/src/string_util.c
@@ -406,7 +406,7 @@ u8 *StringExpandPlaceholders(u8 *dest, const u8 *src)
u8 *StringBraille(u8 *dest, const u8 *src)
{
u8 setBrailleFont[] = { 0xFC, 0x06, 0x06, 0xFF };
- u8 gotoLine2[5] = { 0xFE, 0xFC, 0x0E, 0x02, 0xFF };
+ u8 gotoLine2[] = { 0xFE, 0xFC, 0x0E, 0x02, 0xFF };
dest = StringCopy(dest, setBrailleFont);