summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcus Brinkmann <mb@g10code.com>2005-10-25 19:53:48 +0000
committerMarcus Brinkmann <mb@g10code.com>2005-10-25 19:53:48 +0000
commit904a93777af6081a0b9095818105c5f73dc2660f (patch)
tree1e319ae20ade6d5364e75c669f2187fc7c0ae802 /src
parentf568f8b5b99ea3adeee9b85b41d54b9b9804f107 (diff)
downloadlibgpg-error-904a93777af6081a0b9095818105c5f73dc2660f.tar.gz
Fix last change.
Diffstat (limited to 'src')
-rw-r--r--src/w32-gettext.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/w32-gettext.c b/src/w32-gettext.c
index 07f15db..643711a 100644
--- a/src/w32-gettext.c
+++ b/src/w32-gettext.c
@@ -1415,7 +1415,7 @@ load_domain (const char *filename)
NULL; caller may use GetLastError to get the actual error number.
The result of calling this function with STRING set to NULL is not
defined. */
-char *
+static char *
wchar_to_native (const wchar_t *string)
{
int n;
@@ -1444,7 +1444,7 @@ wchar_to_native (const wchar_t *string)
NULL; caller may use GetLastError to get the actual error number.
The result of calling this function with STRING set to NULL is not
defined. */
-wchar_t *
+static wchar_t *
utf8_to_wchar (const char *string)
{
int n;
@@ -1468,7 +1468,7 @@ utf8_to_wchar (const char *string)
}
-char *
+static char *
utf8_to_native (const char *string)
{
wchar_t *wstring;