diff options
author | synergy dev <synergye@codefi.re> | 2013-11-06 16:31:54 -0800 |
---|---|---|
committer | Synergy Dev <synergye@codefi.re> | 2013-11-26 03:21:13 +0000 |
commit | a0ecc8c4277c5c216915ee60b927aea972c95b25 (patch) | |
tree | 113d6b64cd6117cb91fef15fe702d0398a712789 /minui | |
parent | a370c0f7fe65d6f012902342249d3a84b474f277 (diff) | |
download | bootable_recovery-a0ecc8c4277c5c216915ee60b927aea972c95b25.zip bootable_recovery-a0ecc8c4277c5c216915ee60b927aea972c95b25.tar.gz bootable_recovery-a0ecc8c4277c5c216915ee60b927aea972c95b25.tar.bz2 |
minui: do not use flexible array initialization
Avoiding the use of gnu extensions improves code portability
Change-Id: I441a49ce08b6ecb1d735ca453552fa92026c5016
Diffstat (limited to 'minui')
-rw-r--r-- | minui/font_10x18.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minui/font_10x18.h b/minui/font_10x18.h index 7f96465..29d7053 100644 --- a/minui/font_10x18.h +++ b/minui/font_10x18.h @@ -3,7 +3,7 @@ struct { unsigned height; unsigned cwidth; unsigned cheight; - unsigned char rundata[]; + unsigned char rundata[2973]; } font = { .width = 960, .height = 18, |