diff options
author | Frederic Berat <fberat@redhat.com> | 2023-06-20 20:19:06 +0200 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2023-06-22 00:21:13 -0400 |
commit | 131af38694627f9e5aee13fdc301bf2010759a1b (patch) | |
tree | 58db8357d3e4eb8a28909a14cf15e5a0d01ae4d9 /rt | |
parent | 0371c236233ee7e491937435952c60f50f7e45ea (diff) | |
download | glibc-131af38694627f9e5aee13fdc301bf2010759a1b.zip glibc-131af38694627f9e5aee13fdc301bf2010759a1b.tar.gz glibc-131af38694627f9e5aee13fdc301bf2010759a1b.tar.bz2 |
rt/tst-mqueue4.c: Fix wrong number of argument for mq_open
The mq_open routine should only get either 2 or 4 arguments, this test
wrongly passed 3.
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'rt')
-rw-r--r-- | rt/tst-mqueue4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rt/tst-mqueue4.c b/rt/tst-mqueue4.c index fe45628..9fcaef1 100644 --- a/rt/tst-mqueue4.c +++ b/rt/tst-mqueue4.c @@ -175,14 +175,14 @@ do_test (void) result = 1; } - q2 = mq_open (name, O_RDONLY, 0600); + q2 = mq_open (name, O_RDONLY); 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); if (q3 == (mqd_t) -1) { printf ("mq_open without O_CREAT failed with %m\n"); |