diff options
author | Max Kellermann <max@duempel.org> | 2013-01-04 23:49:41 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-04 23:49:41 +0100 |
commit | 07249fc395d1f211c12df8bb6cf8b0212b241206 (patch) | |
tree | 6b0a6d104bf108d0a77ffa996acef754ea17c261 /src | |
parent | bc1e8e01f3e6abaf2c3511ad82535046d6a7b05d (diff) | |
download | mpd-07249fc395d1f211c12df8bb6cf8b0212b241206.tar.gz mpd-07249fc395d1f211c12df8bb6cf8b0212b241206.tar.xz mpd-07249fc395d1f211c12df8bb6cf8b0212b241206.zip |
replay_gain_config: remove unused variable replay_gain_mode_names
Diffstat (limited to 'src')
-rw-r--r-- | src/replay_gain_config.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/replay_gain_config.c b/src/replay_gain_config.c index 3988e497a..deaf2b5f8 100644 --- a/src/replay_gain_config.c +++ b/src/replay_gain_config.c @@ -31,11 +31,6 @@ #include <string.h> #include <math.h> -static const char *const replay_gain_mode_names[] = { - [REPLAY_GAIN_ALBUM] = "album", - [REPLAY_GAIN_TRACK] = "track", -}; - enum replay_gain_mode replay_gain_mode = REPLAY_GAIN_OFF; const bool DEFAULT_REPLAYGAIN_LIMIT = true; |