diff options
author | Sergei Golubchik <serg@mysql.com> | 2008-08-31 17:20:20 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mysql.com> | 2008-08-31 17:20:20 +0200 |
commit | b54ac0728dcef412ad48c092139c150cac31550c (patch) | |
tree | 5533bb81e5af60709aff0a71dcd20aa353458569 /include/my_pthread.h | |
parent | 8ccb262d055212a0a962652466a6d05275effb50 (diff) | |
download | mariadb-git-b54ac0728dcef412ad48c092139c150cac31550c.tar.gz |
fixes for windows
Diffstat (limited to 'include/my_pthread.h')
-rw-r--r-- | include/my_pthread.h | 2 |
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); |