From 7fb7bef2d223654ea06671633e4a93f20d5c4437 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 26 Jan 2016 09:55:17 -0600 Subject: [PATCH] Fix an error introduced with last IOB fix --- net/iob/iob_alloc_qentry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/iob/iob_alloc_qentry.c b/net/iob/iob_alloc_qentry.c index 04f076bc4e8..2aab1e6353b 100644 --- a/net/iob/iob_alloc_qentry.c +++ b/net/iob/iob_alloc_qentry.c @@ -146,7 +146,7 @@ static FAR struct iob_qentry_s *iob_allocwait_qentry(void) * complete the allocation without losing our count. */ - sem_post(sem); + sem_post(&g_qentry_sem); } } }