commit | 4177a19769d43980bdb803bce33f9cacc1e4e1f8 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Thu Jun 12 18:17:11 2014 -0700 |
committer | Elliott Hughes <enh@google.com> | Thu Jun 12 18:17:11 2014 -0700 |
tree | 3abab3a024b60df6511530bb9df4acb3ed50ff3c | |
parent | c323737dd46d724b4c1ec230b283f26ae2a22b4f [diff] [blame] |
Use char x[] rather than char x[0]. Bug: 15514223 Change-Id: I895ea8ef7e391fd14cdf8976e048385e01c90f8f
diff --git a/include/media/mediascanner.h b/include/media/mediascanner.h index a7bb6c1..37a83c6 100644 --- a/include/media/mediascanner.h +++ b/include/media/mediascanner.h
@@ -59,7 +59,7 @@ private: int32_t mSize; - char mData[0]; + char mData[]; // You can't construct instances of this class directly because this is a // variable-sized object passed through the binder.