Merge "Fixed a discarded const qualifier warning"

This commit is contained in:
Stephen Hines 2012-08-08 15:27:24 -07:00 committed by android code review
commit b3a5343e3e
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++) {