aboutsummaryrefslogtreecommitdiffstats
path: root/minui
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2014-01-04 02:02:17 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-01-04 02:02:17 +0000
commitf3819c271e34559b123bb6b52210923ef1b8f65a (patch)
treee4cd0f4ace324f5abe4e352a9bc12c6b574899d9 /minui
parent7af6b7f2cc59f8477a915367f47127cc516e9fa2 (diff)
parent27efc8f9d1711134051b45d28b2fc38bfb4c7dc6 (diff)
downloadbootable_recovery-f3819c271e34559b123bb6b52210923ef1b8f65a.zip
bootable_recovery-f3819c271e34559b123bb6b52210923ef1b8f65a.tar.gz
bootable_recovery-f3819c271e34559b123bb6b52210923ef1b8f65a.tar.bz2
am 27efc8f9: am 617d1cad: Merge "minui: do not use flexible array initialization"
* commit '27efc8f9d1711134051b45d28b2fc38bfb4c7dc6': minui: do not use flexible array initialization
Diffstat (limited to 'minui')
-rw-r--r--minui/font_10x18.h2
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,