diff options
author | Max Kellermann <max@musicpd.org> | 2021-08-17 10:53:36 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2021-08-17 10:53:36 +0200 |
commit | bedcf1cce5c84f01db628f31e781344523560829 (patch) | |
tree | a30a830f69c62c789f1d7b68ece8738f65f2df2d | |
parent | 30e3ef4c8ee9c0dd78a50e2c4489529381f7c137 (diff) | |
parent | 4c5fea96e46dfb8cd6f814876aa371f8d64ec1d1 (diff) |
-rw-r--r-- | src/decoder/plugins/MikmodDecoderPlugin.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decoder/plugins/MikmodDecoderPlugin.cxx b/src/decoder/plugins/MikmodDecoderPlugin.cxx index 7fbc24bf3..0f0cb3a6a 100644 --- a/src/decoder/plugins/MikmodDecoderPlugin.cxx +++ b/src/decoder/plugins/MikmodDecoderPlugin.cxx @@ -62,9 +62,9 @@ mikmod_mpd_is_present() return true; } -static char drv_name[] = PACKAGE_NAME; -static char drv_version[] = VERSION; -static char drv_alias[] = PACKAGE; +static constexpr char drv_name[] = PACKAGE_NAME; +static constexpr char drv_version[] = VERSION; +static constexpr char drv_alias[] = PACKAGE; static MDRIVER drv_mpd = { nullptr, |