diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2019-10-29 11:52:00 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2019-10-29 11:52:00 +0100 |
commit | 661ae943f9c9f3bcd8ea2b20d833cca632a8d55f (patch) | |
tree | e52f7dc542c6486f8ce302301a12d6a7a656ae99 /test/nptl | |
parent | 6ea1471d624428f810b72113859e3f7739fcaf03 (diff) | |
parent | e3b758dc9f74d6b7ec5b19df1d192a0eec6acd40 (diff) |
Merge remote-tracking branch 'github/master'
Diffstat (limited to 'test/nptl')
-rw-r--r-- | test/nptl/tst-mqueue4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/nptl/tst-mqueue4.c b/test/nptl/tst-mqueue4.c index 87ef0c3..1fbecc5 100644 --- a/test/nptl/tst-mqueue4.c +++ b/test/nptl/tst-mqueue4.c @@ -171,14 +171,14 @@ do_test (void) result = 1; } - q2 = mq_open (name, O_RDONLY, 0600); + q2 = mq_open (name, O_RDONLY, 0600, &attr); if (q2 == (mqd_t) -1) { printf ("mq_open without O_CREAT failed with %m\n"); result = 1; } - mqd_t q3 = mq_open (name, O_RDONLY, 0600); + mqd_t q3 = mq_open (name, O_RDONLY, 0600, &attr); if (q3 == (mqd_t) -1) { printf ("mq_open without O_CREAT failed with %m\n"); |