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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0bfacf4  include/threads.h: add missing semi-colon
0bfacf4 is described below

commit 0bfacf4d1255fb56bb543b0c5820a01d240ea6ab
Author: François Schauber <[email protected]>
AuthorDate: Mon Aug 23 15:24:21 2021 +0200

    include/threads.h: add missing semi-colon
---
 include/threads.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/threads.h b/include/threads.h
index 76c03be..6873f7b 100644
--- a/include/threads.h
+++ b/include/threads.h
@@ -76,7 +76,7 @@
 
 /* thrd_start_t: function pointer type passed to thrd_create */
 
-typedef CODE int (*thrd_start_t)(FAR void *arg)
+typedef CODE int (*thrd_start_t)(FAR void *arg);
 
 /* mtx_t : mutex identifier */
 

Reply via email to