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/nuttx.git
commit 764f8ef9be2ccd6d6b7cba3cdd2cc7158e583ba3 Author: Petro Karashchenko <[email protected]> AuthorDate: Wed May 17 23:10:23 2023 +0300 sched/signal: fix typo in comments Signed-off-by: Petro Karashchenko <[email protected]> --- sched/signal/sig_notification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sched/signal/sig_notification.c b/sched/signal/sig_notification.c index 19efd5bb0c..bd51d7be76 100644 --- a/sched/signal/sig_notification.c +++ b/sched/signal/sig_notification.c @@ -127,7 +127,7 @@ int nxsig_notification(pid_t pid, FAR struct sigevent *event, /* Some compilers (e.g., SDCC), do not permit assignment of aggregates. * Use of memcpy() is overkill; We could just copy the larger of the - * nt and FAR void * members in the union. memcpy(), however, does + * int and FAR void * members in the union. memcpy(), however, does * not require that we know which is larger. */
