mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
ldr_map: Silence lingering initializer warning (#500)
One initializer warning case that I seem to have missed (my bad).
This commit is contained in:
parent
b237168ec7
commit
7a4d1e786c
1 changed files with 1 additions and 1 deletions
|
@ -170,6 +170,6 @@ struct MappedCodeMemory {
|
||||||
/* TODO: panic(). */
|
/* TODO: panic(). */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*this = (const MappedCodeMemory){0};
|
*this = {};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue