summaryrefslogtreecommitdiff
path: root/nuttx/libc
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-07 15:54:37 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-07 15:54:37 -0600
commit6c6c41ff791f5ab36108c84eb10aca162e48cc0e (patch)
tree7995212d68c1e06d3272138af169ad5866dba023 /nuttx/libc
parent3b9fcb97ed990bcdfc36df0414828ce4e0ce8100 (diff)
downloadpx4-nuttx-6c6c41ff791f5ab36108c84eb10aca162e48cc0e.tar.gz
px4-nuttx-6c6c41ff791f5ab36108c84eb10aca162e48cc0e.tar.bz2
px4-nuttx-6c6c41ff791f5ab36108c84eb10aca162e48cc0e.zip
Fix some cloned errors in SAM GPIO interrupt setup
Diffstat (limited to 'nuttx/libc')
-rw-r--r--nuttx/libc/README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/libc/README.txt b/nuttx/libc/README.txt
index 4ecc7c299..b165bd74b 100644
--- a/nuttx/libc/README.txt
+++ b/nuttx/libc/README.txt
@@ -78,7 +78,7 @@ Each type field has a format as follows:
A similar situation exists for unions. For example, the formal
parameter type union sigval -- You cannot cast a uintptr_t to
a union sigval, but you can cast to the type of one of the union
- member types when passing the actual paramter. Similarly, we
+ member types when passing the actual parameter. Similarly, we
cannot cast a union sigval to a uinptr_t either. Rather, we need
to cast a specific union member fieldname to uintptr_t.