Commit 66d6887d authored by marko's avatar marko

branches/zip: Declare os_thread_id_t as unsigned long,

because ulint is wrong on Win64.
Pointed out by Vladislav Vaintroub <wlad@sun.com>.
parent 7d2e84f3
......@@ -44,7 +44,7 @@ can wait inside InnoDB */
#ifdef __WIN__
typedef void* os_thread_t;
typedef ulint os_thread_id_t; /*!< In Windows the thread id
typedef unsigned long os_thread_id_t; /*!< In Windows the thread id
is an unsigned long int */
#else
typedef pthread_t os_thread_t;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment