diff options
author | Max Kellermann <max@duempel.org> | 2015-06-26 08:05:20 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-06-26 08:06:40 +0200 |
commit | 58996b841ac1a19794d704b5622480adc165c434 (patch) | |
tree | 8426bcf8bfbb686a884e2fc513b1c95b518b02ff /src/fs | |
parent | df03a7b3f82a5ab97d54c64ef249fe98782e199c (diff) | |
download | mpd-58996b841ac1a19794d704b5622480adc165c434.tar.gz mpd-58996b841ac1a19794d704b5622480adc165c434.tar.xz mpd-58996b841ac1a19794d704b5622480adc165c434.zip |
config/Global: allow calling config_get_string() with one argument
default_value defaults to nullptr.
Diffstat (limited to 'src/fs')
-rw-r--r-- | src/fs/Config.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/fs/Config.cxx b/src/fs/Config.cxx index d40fa45cf..0b39a362f 100644 --- a/src/fs/Config.cxx +++ b/src/fs/Config.cxx @@ -26,9 +26,7 @@ bool ConfigureFS(Error &error) { #ifdef HAVE_FS_CHARSET - const char *charset = nullptr; - - charset = config_get_string(ConfigOption::FS_CHARSET, nullptr); + const char *charset = config_get_string(ConfigOption::FS_CHARSET); return charset == nullptr || SetFSCharset(charset, error); #else (void)error; |