diff options
author | Max Kellermann <max@duempel.org> | 2013-10-17 22:10:27 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-17 22:10:27 +0200 |
commit | 0d33ae52c6f150d7231a85ea83a164cbb27c10bc (patch) | |
tree | 99a1293691a70bb49919e619683ba9a5e8e10425 | |
parent | 77e4b2809222b4646edf8b7feb8b5c3796e75356 (diff) | |
download | mpd-0d33ae52c6f150d7231a85ea83a164cbb27c10bc.tar.gz mpd-0d33ae52c6f150d7231a85ea83a164cbb27c10bc.tar.xz mpd-0d33ae52c6f150d7231a85ea83a164cbb27c10bc.zip |
fs/Path: make fs_charset static
-rw-r--r-- | src/fs/Path.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/Path.cxx b/src/fs/Path.cxx index 1c41be3b4..654a517bb 100644 --- a/src/fs/Path.cxx +++ b/src/fs/Path.cxx @@ -49,7 +49,7 @@ static constexpr size_t MPD_PATH_MAX_UTF8 = (MPD_PATH_MAX - 1) * 4 + 1; const Domain path_domain("path"); -std::string fs_charset; +static std::string fs_charset; inline Path::Path(Donate, pointer _value) :value(_value) { |