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

Commit f442cf27 authored by Stephen Hines's avatar Stephen Hines Committed by Android Git Automerger
Browse files

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

* commit 'b3a5343e':
  Fixed a discarded const qualifier warning
parents 7accfc2f b3a5343e
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++) {