summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-01-01 12:40:18 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-01-01 12:40:18 -0600
commitb158aca5b22a5d4bbd49fd31f9f5b46a1a41a54d (patch)
tree102a45277156edba64d052e6c26f1bac5b0e7018 /apps
parentebb35cf4af9c395e12f1a56a0d68655f50674168 (diff)
downloadnuttx-b158aca5b22a5d4bbd49fd31f9f5b46a1a41a54d.tar.gz
nuttx-b158aca5b22a5d4bbd49fd31f9f5b46a1a41a54d.tar.bz2
nuttx-b158aca5b22a5d4bbd49fd31f9f5b46a1a41a54d.zip
Add Z16F NSH configuration
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/ostest/sighand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/examples/ostest/sighand.c b/apps/examples/ostest/sighand.c
index 32b182c21..ea9775e01 100644
--- a/apps/examples/ostest/sighand.c
+++ b/apps/examples/ostest/sighand.c
@@ -59,7 +59,7 @@ static void death_of_child(int signo, siginfo_t *info, void *ucontext)
{
/* Use of printf in a signal handler is NOT safe! It can cause deadlocks!
* Also, signals are not queued by NuttX. As a consequence, some
- * notifications will get lost (or the info data can be overwrittedn)!
+ * notifications will get lost (or the info data can be overwrittedn)!
* Because POSIX does not require signals to be queued, I do not think
* that this is a bug (the overwriting is a bug, however).
*/