diff options
author | 2020-01-23 04:03:35 +0100 | |
---|---|---|
committer | 2020-01-22 22:03:35 -0500 | |
commit | 7c3aea8928f90955b7b67e40c705c16d8543384f (patch) | |
tree | 4818711117f20ef52fbbcec6543aa970c3c4d519 /src/emu/disound.cpp | |
parent | d4bed5fce44ecf903e5170a8d4624a9edf7c14f3 (diff) |
fixed some clang-tidy warnings (nw) (#6197)
* fixed some bugprone-throw-keyword-missing clang-tidy warnings (nw)
* fixed some modernize-use-nullptr clang-tidy warnings (nw)
* fixed some readability-delete-null-pointer clang-tidy warnings (nw)
* fixed some performance-faster-string-find clang-tidy warnings (nw)
* fixed some performance-for-range-copy clang-tidy warnings (nw)
* fixed some readability-redundant-string-cstr clang-tidy warnings (nw)
Diffstat (limited to 'src/emu/disound.cpp')
-rw-r--r-- | src/emu/disound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/disound.cpp b/src/emu/disound.cpp index 6135b4a2f64..a48ad44c40b 100644 --- a/src/emu/disound.cpp +++ b/src/emu/disound.cpp @@ -260,7 +260,7 @@ void device_sound_interface::interface_validity_check(validity_checker &valid) c // find a device with the requested tag device_t const *const target = route.m_base.get().subdevice(route.m_target.c_str()); if (!target) - osd_printf_error("Attempting to route sound to non-existent device '%s'\n", route.m_base.get().subtag(route.m_target.c_str())); + osd_printf_error("Attempting to route sound to non-existent device '%s'\n", route.m_base.get().subtag(route.m_target)); // if it's not a speaker or a sound device, error device_sound_interface const *sound; |