]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2690. [bug] win32: fix isc_thread_key_getspecific() prototype.
authorMark Andrews <marka@isc.org>
Fri, 25 Sep 2009 05:52:20 +0000 (05:52 +0000)
committerMark Andrews <marka@isc.org>
Fri, 25 Sep 2009 05:52:20 +0000 (05:52 +0000)
                        [RT #20315]

CHANGES
lib/isc/win32/include/isc/thread.h

diff --git a/CHANGES b/CHANGES
index ec7d2da7e7fec6966403048133583a6448d228d9..ae83e012acd8b72e6230b5a0f93546b3eef7fb44 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+2690.  [bug]           win32: fix isc_thread_key_getspecific() prototype.
+                       [RT #20315]
+
 2689.  [bug]           Correctly handle snprintf result. [RT #20306]
 
 2688.  [bug]           Use INTERFACE_F_POINTTOPOINT, not IFF_POINTOPOINT,
index d8577689d564964f8eccecd72a92af7d70387c42..c52786d9d7e6dad477557284bc483d548e1a80c8 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: thread.h,v 1.16.18.4 2005/10/11 22:56:47 marka Exp $ */
+/* $Id: thread.h,v 1.16.18.5 2009/09/25 05:52:20 marka Exp $ */
 
 #ifndef ISC_THREAD_H
 #define ISC_THREAD_H 1
@@ -90,7 +90,7 @@ int
 isc_thread_key_delete(isc_thread_key_t key);
 
 void *
-isc_thread_key_getspecific(isc_thread_key);
+isc_thread_key_getspecific(isc_thread_key_t);
 
 int
 isc_thread_key_setspecific(isc_thread_key_t key, void *value);