From 5160874dedc96959f4f1e68f32c6a634568c539e Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 29 Sep 2014 16:03:56 -0600 Subject: First round of fixes for re-implemented VFS message queues --- apps/examples/ostest/mqueue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/examples') diff --git a/apps/examples/ostest/mqueue.c b/apps/examples/ostest/mqueue.c index b747af089..b5f1ffb56 100644 --- a/apps/examples/ostest/mqueue.c +++ b/apps/examples/ostest/mqueue.c @@ -130,7 +130,7 @@ static void *sender_thread(void *arg) */ g_send_mqfd = mq_open("mqueue", O_WRONLY|O_CREAT, 0666, &attr); - if (g_send_mqfd < 0) + if (g_send_mqfd == (mqd_t)-1) { printf("sender_thread: ERROR mq_open failed\n"); pthread_exit((pthread_addr_t)1); @@ -435,7 +435,7 @@ void mqueue_test(void) if (g_send_mqfd) { - printf("mqueue_test: ERROR receive mqd_t left open\n"); + printf("mqueue_test: ERROR receiver mqd_t left open\n"); if (mq_close(g_send_mqfd) < 0) { printf("sender_thread: ERROR mq_close failed\n"); -- cgit v1.2.3