diff options
author | Nick Kralevich <nnk@google.com> | 2010-08-31 09:44:43 -0700 |
---|---|---|
committer | Nick Kralevich <nnk@google.com> | 2010-08-31 09:44:43 -0700 |
commit | 4688ac5b73abf15798415f7260f21bd87d23dd2b (patch) | |
tree | 34fb97c87b0b409bf41689ca2f79b50fd84faea8 /include | |
parent | 44db990d3a4ce0edbdd16fa7ac20693ef601b723 (diff) | |
download | system_core-4688ac5b73abf15798415f7260f21bd87d23dd2b.zip system_core-4688ac5b73abf15798415f7260f21bd87d23dd2b.tar.gz system_core-4688ac5b73abf15798415f7260f21bd87d23dd2b.tar.bz2 |
get rid of compile time warning: "warning: ‘android_ids’ defined but not used"
Change-Id: If365bd88f735d425f37d61bcd5a6903f99f6a454
Diffstat (limited to 'include')
-rw-r--r-- | include/private/android_filesystem_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/private/android_filesystem_config.h b/include/private/android_filesystem_config.h index 1dbe171..97b873a 100644 --- a/include/private/android_filesystem_config.h +++ b/include/private/android_filesystem_config.h @@ -76,7 +76,7 @@ struct android_id_info { unsigned aid; }; -static struct android_id_info android_ids[] = { +static const struct android_id_info android_ids[] = { { "root", AID_ROOT, }, { "system", AID_SYSTEM, }, { "radio", AID_RADIO, }, |