You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ag...@apache.org on 2020/02/15 18:08:12 UTC

[incubator-nuttx-apps] branch master updated: examples/elf/tests/mutex/mutex.c: Fix typo in a previous PR.

This is an automated email from the ASF dual-hosted git repository.

aguettouche pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 218d8c9  examples/elf/tests/mutex/mutex.c:  Fix typo in a previous PR.
218d8c9 is described below

commit 218d8c9fe298032084f6aee683f514ab6a0eef2b
Author: Gregory Nutt <gn...@nuttx.org>
AuthorDate: Sat Feb 15 11:50:34 2020 -0600

    examples/elf/tests/mutex/mutex.c:  Fix typo in a previous PR.
---
 examples/elf/tests/mutex/mutex.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/elf/tests/mutex/mutex.c b/examples/elf/tests/mutex/mutex.c
index 9453f0d..8621ef0 100644
--- a/examples/elf/tests/mutex/mutex.c
+++ b/examples/elf/tests/mutex/mutex.c
@@ -64,7 +64,7 @@ static volatile bool bendoftest;
 
 void thread_func(void *parameter)
 {
-  int my_id  = (int)((intptr_t)parameter;)
+  int my_id  = (int)((intptr_t)parameter);
   int my_ndx = my_id - 1;
   int i;