ldr_map: Silence lingering initializer warning (#500)

One initializer warning case that I seem to have missed (my bad).
This commit is contained in:
Mat M 2019-04-05 02:13:46 -04:00 committed by SciresM
parent b237168ec7
commit 7a4d1e786c

View file

@ -170,6 +170,6 @@ struct MappedCodeMemory {
/* TODO: panic(). */ /* TODO: panic(). */
} }
} }
*this = (const MappedCodeMemory){0}; *this = {};
} }
}; };