diff options
author | YamaArashi <shadow962@live.com> | 2017-01-14 15:50:29 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2017-01-14 15:50:29 -0800 |
commit | 72470c70488b73ca1ad25f055a0dc2e1ced15486 (patch) | |
tree | bf0050db5024fbb16343a70c91ca63de2139c6a8 /src/string_util.c | |
parent | 53935efc64b9945e49dc932917dc179bdbe58631 (diff) |
remove explicit array size
Diffstat (limited to 'src/string_util.c')
-rw-r--r-- | src/string_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_util.c b/src/string_util.c index a00f261bd..c7e8b4e9c 100644 --- a/src/string_util.c +++ b/src/string_util.c @@ -395,7 +395,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); |