diff options
Diffstat (limited to 'src/devices/cpu/arm/arm.cpp')
-rw-r--r-- | src/devices/cpu/arm/arm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/arm/arm.cpp b/src/devices/cpu/arm/arm.cpp index c2036ab166d..1ad73f69684 100644 --- a/src/devices/cpu/arm/arm.cpp +++ b/src/devices/cpu/arm/arm.cpp @@ -563,7 +563,7 @@ void arm_cpu_device::device_start() void arm_cpu_device::state_string_export(const device_state_entry &entry, std::string &str) const { - static const char *s[4] = { "USER", "FIRQ", "IRQ ", "SVC " }; + static char const *const s[4] = { "USER", "FIRQ", "IRQ ", "SVC " }; switch (entry.index()) { |