commit | a0ecc8c4277c5c216915ee60b927aea972c95b25 | [log] [tgz] |
---|---|---|
author | synergy dev <synergye@codefi.re> | Wed Nov 06 16:31:54 2013 -0800 |
committer | Synergy Dev <synergye@codefi.re> | Tue Nov 26 03:21:13 2013 +0000 |
tree | 113d6b64cd6117cb91fef15fe702d0398a712789 | |
parent | a370c0f7fe65d6f012902342249d3a84b474f277 [diff] |
minui: do not use flexible array initialization Avoiding the use of gnu extensions improves code portability Change-Id: I441a49ce08b6ecb1d735ca453552fa92026c5016
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 @@ unsigned height; unsigned cwidth; unsigned cheight; - unsigned char rundata[]; + unsigned char rundata[2973]; } font = { .width = 960, .height = 18,