summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-19 18:35:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-19 18:35:30 +0000
commit1dcccc2449c07403ee43a52d55594ea032d13007 (patch)
treea6d59e98498fff286d0204fd999232b5a85c0c55 /cpukit
parent2011-07-19 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-1dcccc2449c07403ee43a52d55594ea032d13007.tar.bz2
2011-07-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/include/rtems/score/chain.h: Fix typo.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/score/include/rtems/score/chain.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index c91d05de1c..4ebb0fc5d9 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2011-07-19 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * score/include/rtems/score/chain.h: Fix typo.
+
2011-07-19 Joel Sherrill <joel.sherrilL@OARcorp.com>
PR 1838/filesystem
diff --git a/cpukit/score/include/rtems/score/chain.h b/cpukit/score/include/rtems/score/chain.h
index 187a466c90..b7b2a1b9b5 100644
--- a/cpukit/score/include/rtems/score/chain.h
+++ b/cpukit/score/include/rtems/score/chain.h
@@ -67,7 +67,7 @@ typedef struct Chain_Node_struct Chain_Node;
*
*/
struct Chain_Node_struct {
- /** This points to the node after to this one on this chain. */
+ /** This points to the node after this one on this chain. */
Chain_Node *next;
/** This points to the node immediate prior to this one on this chain. */
Chain_Node *previous;