* user/chain.t: Fixed the example from PR 1504.
This commit is contained in:
Chris Johns
2010-04-22 06:47:28 +00:00
parent 32eadeb250
commit 452e5b0828
2 changed files with 7 additions and 2 deletions

View File

@@ -180,14 +180,15 @@ void foobar (const char* match,
while (!@value{DIRPREFIX}chain_is_tail (chain, node))
@{
bar = (foo*) node;
rtems_chain_node* next_node = node->next;
if (strcmp (match, bar->data) == 0)
@{
@value{DIRPREFIX}chain_node* next_node = node->next;
@value{DIRPREFIX}chain_extract (node);
@value{DIRPREFIX}chain_append (out, node);
node = next_node;
@}
node = next_node;
@}
@}
@end example