From e9c55d8f7d4981043aaa3a21ac020da627d554f2 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 27 May 2017 08:03:00 -0600 Subject: [PATCH] IOBs: Fix a typing error mm/iob/iob.h mm/iob/iob_initialize.c --- mm/iob/iob.h | 2 +- mm/iob/iob_initialize.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mm/iob/iob.h b/mm/iob/iob.h index 9f43612d71..855c5fd1ab 100644 --- a/mm/iob/iob.h +++ b/mm/iob/iob.h @@ -102,7 +102,7 @@ extern FAR struct iob_qentry_s *g_iob_freeqlist; /* A list of I/O buffer queue containers that are committed for allocation */ -extern FAR struct iob_s *g_iob_qcommitted; +extern FAR struct iob_qentry_s *g_iob_qcommitted; #endif /* Counting semaphores that tracks the number of free IOBs/qentries */ diff --git a/mm/iob/iob_initialize.c b/mm/iob/iob_initialize.c index adab03c228..b11d2f005c 100644 --- a/mm/iob/iob_initialize.c +++ b/mm/iob/iob_initialize.c @@ -84,7 +84,7 @@ FAR struct iob_qentry_s *g_iob_freeqlist; /* A list of I/O buffer queue containers that are committed for allocation */ -FAR struct iob_s *g_iob_qcommitted; +FAR struct iob_qentry_s *g_iob_qcommitted; #endif /* Counting semaphores that tracks the number of free IOBs/qentries */