You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/10/11 05:00:35 UTC

[incubator-nuttx] branch master updated: libs/libc/signal/sig_wait.c: Fix a typo

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 5a17888  libs/libc/signal/sig_wait.c: Fix a typo
5a17888 is described below

commit 5a1788822d297b229a492352197dd38f7010213e
Author: Yoshinori Sugino <ys...@gmail.com>
AuthorDate: Sun Oct 11 10:34:10 2020 +0900

    libs/libc/signal/sig_wait.c: Fix a typo
---
 libs/libc/signal/sig_wait.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/libc/signal/sig_wait.c b/libs/libc/signal/sig_wait.c
index 4dbada5..0f860e3 100644
--- a/libs/libc/signal/sig_wait.c
+++ b/libs/libc/signal/sig_wait.c
@@ -91,7 +91,7 @@ int sigwait(FAR const sigset_t *set, FAR int *sig)
 
   DEBUGASSERT(set != NULL && sig != NULL);
 
-  /* The standard sigwait() function behaves that same as sigwainfo() with
+  /* The standard sigwait() function behaves that same as sigwaitinfo() with
    * the info argument set to NULL.
    */