commit | b3a5343e3ef705e2493a2a8546f6e416d41b1c77 | [log] [tgz] |
---|---|---|
author | Stephen Hines <srhines@google.com> | Wed Aug 08 15:27:24 2012 -0700 |
committer | android code review <noreply-gerritcodereview@google.com> | Wed Aug 08 15:27:25 2012 -0700 |
tree | 476a2032745e86c268a8334f098caaf3dcf9d97f | |
parent | f889f0dba404d0dfb75fb33ad1df152129b0a7d2 [diff] | |
parent | de7f1ad86f532e79ea2a9f77b0147406a9ad971b [diff] |
Merge "Fixed a discarded const qualifier warning"
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++) {