summaryrefslogtreecommitdiffstats
path: root/src/polypcore/utf8.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-05-16 00:44:47 +0000
committerLennart Poettering <lennart@poettering.net>2006-05-16 00:44:47 +0000
commite8cc63d75685bd264efaea2b7bce894ba182e2a2 (patch)
tree4fee080fb8473666247f71a07245b0a133b2a3b5 /src/polypcore/utf8.h
parent23e74545adce1e23f6d3e09a0cbb9f1d98a7b933 (diff)
* remove "const" from return type of pa_utf8_filter() since it desn't make any sense
* fix pa_utf8_filter() to not skip the next character too if it found an invalid one git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@877 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/polypcore/utf8.h')
-rw-r--r--src/polypcore/utf8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/polypcore/utf8.h b/src/polypcore/utf8.h
index 5f1fc5df..6d1e4a7d 100644
--- a/src/polypcore/utf8.h
+++ b/src/polypcore/utf8.h
@@ -23,6 +23,6 @@
***/
const char *pa_utf8_valid(const char *str);
-const char *pa_utf8_filter(const char *str);
+char *pa_utf8_filter(const char *str);
#endif