summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2012-08-08 16:02:45 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-08-08 16:02:45 -0700
commitf442cf27c5d1229eb32973cb499578ccd63ba727 (patch)
tree09b206e5cc19ff52694d9c6cbd1625790f6bf84a
parent7accfc2ffd3d0fb6e6e8985349e8773f1977df59 (diff)
parentb3a5343e3ef705e2493a2a8546f6e416d41b1c77 (diff)
downloadsystem_core-f442cf27c5d1229eb32973cb499578ccd63ba727.zip
system_core-f442cf27c5d1229eb32973cb499578ccd63ba727.tar.gz
system_core-f442cf27c5d1229eb32973cb499578ccd63ba727.tar.bz2
am b3a5343e: Merge "Fixed a discarded const qualifier warning"
* commit 'b3a5343e3ef705e2493a2a8546f6e416d41b1c77': Fixed a discarded const qualifier warning
-rwxr-xr-xinit/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/util.c b/init/util.c
index f994ab9..743748b 100755
--- a/init/util.c
+++ b/init/util.c
@@ -47,7 +47,7 @@
*/
static unsigned int android_name_to_id(const char *name)
{
- struct android_id_info *info = android_ids;
+ const struct android_id_info *info = android_ids;
unsigned int n;
for (n = 0; n < android_id_count; n++) {