From 9ba32056256f7a33a8e55a784e5b6251c94dddaf Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 16 Dec 2012 10:14:20 +0000 Subject: Fixed bug 3595910. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4922 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/kernel/include/chqueues.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'os/kernel/include') diff --git a/os/kernel/include/chqueues.h b/os/kernel/include/chqueues.h index b16a19609..ff90d9e5f 100644 --- a/os/kernel/include/chqueues.h +++ b/os/kernel/include/chqueues.h @@ -255,13 +255,13 @@ typedef GenericQueue OutputQueue; /** * @brief Returns the empty space into an output queue. * - * @param[in] iqp pointer to an @p OutputQueue structure + * @param[in] oqp pointer to an @p OutputQueue structure * @return The number of empty bytes in the queue. * @retval 0 if the queue is full. * * @iclass */ -#define chOQGetEmptyI(iqp) chQSpaceI(oqp) +#define chOQGetEmptyI(oqp) chQSpaceI(oqp) /** * @brief Evaluates to @p TRUE if the specified output queue is empty. -- cgit v1.2.3