summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cronenworth <mike@cchtml.com>2011-10-25 22:08:41 +0200
committerStef Walter <stefw@collabora.co.uk>2011-10-25 22:08:41 +0200
commit69f7eaa0508326f07832b91557f9e1ad8e6864c6 (patch)
treedbdcbc2e6b38a2c2b0bf7fb721adab00a11ed2e4
parent190aee9cdf44d257333d7ef9e29113a07f1516c9 (diff)
downloadp11-kit-69f7eaa0508326f07832b91557f9e1ad8e6864c6.tar.gz
Fix broken build on windows
* The debug_init() call needed a rename to _p11_debug_init() to match the non-Win32 code.
-rw-r--r--p11-kit/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/p11-kit/util.c b/p11-kit/util.c
index 933365d..b340ebd 100644
--- a/p11-kit/util.c
+++ b/p11-kit/util.c
@@ -308,7 +308,7 @@ _p11_library_get_thread_local (void)
void
_p11_library_init (void)
{
- debug_init ();
+ _p11_debug_init ();
_p11_mutex_init (&_p11_mutex);
thread_local = TlsAlloc ();
}