diff options
author | Max Kellermann <max@duempel.org> | 2009-02-20 14:49:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-20 14:49:57 +0100 |
commit | 91ebf4685380eb3cb43b49d389ced8f8fbac7f6a (patch) | |
tree | 94597343c4a85106c022c6b6b1ff038ab0cea8c6 /src | |
parent | 09ecfb6567f3f4ea2e70e3e9d7f54c8f909271c0 (diff) | |
download | mpd-91ebf4685380eb3cb43b49d389ced8f8fbac7f6a.tar.gz mpd-91ebf4685380eb3cb43b49d389ced8f8fbac7f6a.tar.xz mpd-91ebf4685380eb3cb43b49d389ced8f8fbac7f6a.zip |
path: don't export path_set_fs_charset()
The function path_set_fs_charset() is only used in path.c.
Diffstat (limited to 'src')
-rw-r--r-- | src/path.c | 3 | ||||
-rw-r--r-- | src/path.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/path.c b/src/path.c index 1b6405cb0..575124c2c 100644 --- a/src/path.c +++ b/src/path.c @@ -52,7 +52,8 @@ utf8_to_fs_charset(const char *path_utf8) return p; } -void path_set_fs_charset(const char *charset) +static void +path_set_fs_charset(const char *charset) { char *test; diff --git a/src/path.h b/src/path.h index 71b09fb5b..9a003167d 100644 --- a/src/path.h +++ b/src/path.h @@ -49,8 +49,6 @@ fs_charset_to_utf8(const char *path_fs); char * utf8_to_fs_charset(const char *path_utf8); -void path_set_fs_charset(const char *charset); - const char *path_get_fs_charset(void); #endif |