summaryrefslogtreecommitdiff
path: root/create.c
diff options
context:
space:
mode:
authorrpj <rpj>1998-07-24 13:28:10 +0000
committerrpj <rpj>1998-07-24 13:28:10 +0000
commite80271449742bf9c3f1e54312fbc5af6f413ff35 (patch)
tree05859dd810d7263606da158a4d6d868ec7004523 /create.c
parentc913bfb2e2ef13f3ef7bdf08421d88a62ac489a3 (diff)
Fix a minor problem with the last commit.
Diffstat (limited to 'create.c')
-rw-r--r--create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/create.c b/create.c
index 2310993..1d2303e 100644
--- a/create.c
+++ b/create.c
@@ -92,7 +92,7 @@ pthread_create(pthread_t *thread,
attr_copy->priority = attr->priority;
#if HAVE_SIGSET_T
- memcpy(attr_copy->sigmask, attr->sigmask, sizeof(sigset_t));
+ memcpy(&(attr_copy->sigmask), &(attr->sigmask), sizeof(sigset_t));
#endif /* HAVE_SIGSET_T */
}