Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de7f1ad8 authored by Edwin Vane's avatar Edwin Vane
Browse files

Fixed a discarded const qualifier warning



Change-Id: I9007924d0bf49705363aa130e6e588a9e0ccdc31
Author: Edwin Vane <edwin.vane@intel.com>
Reviewed-by: default avatarTareq A Siraj <tareq.a.siraj@intel.com>
parent ae06933c
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -47,7 +47,7 @@
 */
 */
static unsigned int android_name_to_id(const char *name)
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;
    unsigned int n;


    for (n = 0; n < android_id_count; n++) {
    for (n = 0; n < android_id_count; n++) {