From 0bfacf4d1255fb56bb543b0c5820a01d240ea6ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Schauber?= Date: Mon, 23 Aug 2021 15:24:21 +0200 Subject: [PATCH] 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 76c03bef161..6873f7b9dd6 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 */