summaryrefslogtreecommitdiff
path: root/include/my_pthread.h
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mysql.com>2008-08-31 17:20:20 +0200
committerSergei Golubchik <serg@mysql.com>2008-08-31 17:20:20 +0200
commitb54ac0728dcef412ad48c092139c150cac31550c (patch)
tree5533bb81e5af60709aff0a71dcd20aa353458569 /include/my_pthread.h
parent8ccb262d055212a0a962652466a6d05275effb50 (diff)
downloadmariadb-git-b54ac0728dcef412ad48c092139c150cac31550c.tar.gz
fixes for windows
Diffstat (limited to 'include/my_pthread.h')
-rw-r--r--include/my_pthread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h
index 337b167e548..9df8a9e6a65 100644
--- a/include/my_pthread.h
+++ b/include/my_pthread.h
@@ -98,7 +98,7 @@ struct timespec {
#define set_timespec_nsec(ABSTIME,NSEC) do { \
union ft64 tv; \
GetSystemTimeAsFileTime(&tv.ft); \
- set_timespec_time_nsec((ABSTIME), tv.i64, (NSEC)) \
+ set_timespec_time_nsec((ABSTIME), tv.i64, (NSEC)); \
} while(0)
void win_pthread_init(void);