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

* commit 'f442cf27c5d1229eb32973cb499578ccd63ba727':
  Fixed a discarded const qualifier warning
This commit is contained in:
Stephen Hines 2012-08-08 17:44:04 -07:00 committed by Android Git Automerger
commit 4900f43670
1 changed files with 1 additions and 1 deletions

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