summaryrefslogtreecommitdiffstats
path: root/doc/user/chains.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-05-05 20:44:15 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-05-05 20:44:15 +0000
commitcdeead64f6602e29752e8db4d194e9fde65002f3 (patch)
tree98aa78e20fe26b170a2a19d5b9608caba31bc18a /doc/user/chains.t
parentHousekeeping. (diff)
downloadrtems-cdeead64f6602e29752e8db4d194e9fde65002f3.tar.bz2
2010-05-05 Alin Rus <alin.codejunkie@gmail.com>
PR 1510/doc * user/chains.t: Fix code example.
Diffstat (limited to 'doc/user/chains.t')
-rwxr-xr-xdoc/user/chains.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/user/chains.t b/doc/user/chains.t
index 7e005b1832..5c8e84f9c3 100755
--- a/doc/user/chains.t
+++ b/doc/user/chains.t
@@ -146,7 +146,7 @@ Add nodes with the following code:
for (i = 0; i < count; i++)
@{
foo* bar = malloc (sizeof (foo));
- if (!foo)
+ if (!bar)
return -1;
bar->data = malloc (size);
@value{DIRPREFIX}chain_append (&chain, &bar->node);