diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-16 10:06:30 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-16 10:06:30 +0000 |
commit | 825c04410cd83c4d0a9fc41b06e9b4fc74ead9eb (patch) | |
tree | 50b6354efb50a8f3eea9f4cce745fd81788332e2 /os/hal | |
parent | 5a32124d5588a01a72d580e60c9791c49b9ff859 (diff) | |
download | ChibiOS-825c04410cd83c4d0a9fc41b06e9b4fc74ead9eb.tar.gz ChibiOS-825c04410cd83c4d0a9fc41b06e9b4fc74ead9eb.tar.bz2 ChibiOS-825c04410cd83c4d0a9fc41b06e9b4fc74ead9eb.zip |
Fixed bug #565.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7774 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/src/hal_queues.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/src/hal_queues.c b/os/hal/src/hal_queues.c index d825674ec..0cb1161b6 100644 --- a/os/hal/src/hal_queues.c +++ b/os/hal/src/hal_queues.c @@ -368,7 +368,7 @@ msg_t oqGetI(output_queue_t *oqp) { * buffer.
*
* @param[in] oqp pointer to an @p output_queue_t structure
- * @param[out] bp pointer to the data buffer
+ * @param[in] bp pointer to the data buffer
* @param[in] n the maximum amount of data to be transferred, the
* value 0 is reserved
* @param[in] timeout the number of ticks before the operation timeouts,
|