diff options
author | unknown <tim@localhost.polyesthetic.msg> | 2000-08-09 14:47:25 -0400 |
---|---|---|
committer | unknown <tim@localhost.polyesthetic.msg> | 2000-08-09 14:47:25 -0400 |
commit | 14ccbc09bb38559d8cf30ae2b5690e1a40617882 (patch) | |
tree | 46372917c080f9393ac3b3e0b8f895a7dedba10c /mysys/my_pthread.c | |
parent | 60a4499bae599ddc1c9c92ad4a1294f7b85ae465 (diff) | |
download | mariadb-git-14ccbc09bb38559d8cf30ae2b5690e1a40617882.tar.gz |
Add const to [my_]sigwait() arg, to make all declarations match.
include/my_pthread.h:
- add const to [my_]sigwait() arg
mysys/my_pthread.c:
- add const to [my_]sigwait() arg
Diffstat (limited to 'mysys/my_pthread.c')
-rw-r--r-- | mysys/my_pthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_pthread.c b/mysys/my_pthread.c index 4bf3e5e702a..b2445bfa363 100644 --- a/mysys/my_pthread.c +++ b/mysys/my_pthread.c @@ -100,7 +100,7 @@ int my_pthread_create_detached=1; #if defined(HAVE_NONPOSIX_SIGWAIT) || defined(HAVE_DEC_3_2_THREADS) -int my_sigwait(sigset_t *set,int *sig) +int my_sigwait(const sigset_t *set,int *sig) { int signal=sigwait(set); if (signal < 0) |