summaryrefslogtreecommitdiff
path: root/src/charset.h
diff options
context:
space:
mode:
authorAndrzej Rybczak <electricityispower@gmail.com>2009-07-10 14:44:20 +0200
committerAndrzej Rybczak <electricityispower@gmail.com>2009-07-10 14:44:20 +0200
commit209f5337ee4f67f694331fc5d1000bdf64a380b4 (patch)
tree265bbba982a72394e1b28409dca8ed46231a09c8 /src/charset.h
parentd8b8d4aedaeec600e9cbcb98e9d8f7c41094c29d (diff)
make str_pool return const char * instead of char *
Diffstat (limited to 'src/charset.h')
-rw-r--r--src/charset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.h b/src/charset.h
index 3f195d41..5c875355 100644
--- a/src/charset.h
+++ b/src/charset.h
@@ -35,8 +35,8 @@ void locale_to_utf(std::string &);
std::string utf_to_locale_cpy(const std::string &s);
std::string locale_to_utf_cpy(const std::string &s);
-void str_pool_utf_to_locale(char *&);
-void str_pool_locale_to_utf(char *&);
+void str_pool_utf_to_locale(const char *&);
+void str_pool_locale_to_utf(const char *&);
#else