diff options
author | Michael Cronenworth <mike@cchtml.com> | 2011-10-25 22:08:41 +0200 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2011-10-25 22:08:41 +0200 |
commit | 69f7eaa0508326f07832b91557f9e1ad8e6864c6 (patch) | |
tree | dbdcbc2e6b38a2c2b0bf7fb721adab00a11ed2e4 /p11-kit/util.c | |
parent | 190aee9cdf44d257333d7ef9e29113a07f1516c9 (diff) | |
download | p11-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.
Diffstat (limited to 'p11-kit/util.c')
-rw-r--r-- | p11-kit/util.c | 2 |
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 (); } |