From 290d1ef783ca3fc1a85fdb89bdfe574e67704441 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 13 Jun 2009 13:52:07 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_1.2.x@1033 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/chthreads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chthreads.c b/src/chthreads.c index 427ed9eea..4dda48a96 100644 --- a/src/chthreads.c +++ b/src/chthreads.c @@ -79,7 +79,7 @@ static void memfill(uint8_t *startp, uint8_t *endp, uint8_t v) { * the initial state is @p PRSUSPENDED. * * @param[out] wsp pointer to a working area dedicated to the thread stack - * @param[in] wsize size of the working area + * @param[in] size size of the working area * @param[in] prio the priority level for the new thread * @param[in] pf the thread function * @param[in] arg an argument passed to the thread function. It can be @p NULL.