am b3a5343e: Merge "Fixed a discarded const qualifier warning"

* commit 'b3a5343e3ef705e2493a2a8546f6e416d41b1c77':
  Fixed a discarded const qualifier warning
This commit is contained in:
Stephen Hines 2012-08-08 16:02:45 -07:00 committed by Android Git Automerger
commit f442cf27c5

View file

@ -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++) {