summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-06-13 15:27:25 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-06-12 21:07:49 +0000
commitccaffa8df0e201da6bfabb6d616e62904cfb5534 (patch)
treec95d75a54370b2d43c2100a2382a64d9d9100e31 /include
parent90732a3be5e70156486aca94bde8aa81106329ba (diff)
parent4177a19769d43980bdb803bce33f9cacc1e4e1f8 (diff)
downloadframeworks_av-ccaffa8df0e201da6bfabb6d616e62904cfb5534.zip
frameworks_av-ccaffa8df0e201da6bfabb6d616e62904cfb5534.tar.gz
frameworks_av-ccaffa8df0e201da6bfabb6d616e62904cfb5534.tar.bz2
Merge "Use char x[] rather than char x[0]."
Diffstat (limited to 'include')
-rw-r--r--include/media/mediascanner.h2
1 files changed, 1 insertions, 1 deletions
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 @@ public:
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.