summaryrefslogtreecommitdiff
path: root/mysys
diff options
context:
space:
mode:
authorChristopher Powers <chris.powers@oracle.com>2013-11-07 15:44:57 -0600
committerChristopher Powers <chris.powers@oracle.com>2013-11-07 15:44:57 -0600
commitaec08569201af8d0a112f90165e0b788411791d9 (patch)
tree055713cc223ce8a63380c23d09753074a011e59c /mysys
parent127e75859c5ee9af05ea871e141c4112352cf085 (diff)
downloadmariadb-git-aec08569201af8d0a112f90165e0b788411791d9.tar.gz
Bug#17702677 WRONG INSTRUMENTATION INTERFACE FOR MYSQL_COND_TIMEDWAIT
Fix Windows build break
Diffstat (limited to 'mysys')
-rw-r--r--mysys/my_wincond.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/my_wincond.c b/mysys/my_wincond.c
index fe06bf3ebd2..4794bb391b6 100644
--- a/mysys/my_wincond.c
+++ b/mysys/my_wincond.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
+/* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -305,7 +305,7 @@ int pthread_cond_signal(pthread_cond_t *cond)
int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
- struct timespec *abstime)
+ const struct timespec *abstime)
{
if (have_native_conditions)
{