<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2010-04-22)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ccj</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-04-22      Alin Rus <alin.codejunkie@gmail.com>

        * user/chain.t: Fixed the example from PR 1504.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/doc/ChangeLog.diff?r1=text&tr1=1.266&r2=text&tr2=1.267&diff_format=h">M</a></td><td width='1%'>1.267</td><td width='100%'>doc/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/doc/user/chains.t.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>doc/user/chains.t</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/doc/ChangeLog:1.266 rtems/doc/ChangeLog:1.267
--- rtems/doc/ChangeLog:1.266   Thu Mar  4 08:40:06 2010
+++ rtems/doc/ChangeLog Thu Apr 22 01:47:28 2010
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2010-04-22    Alin Rus <alin.codejunkie@gmail.com>
+
+       * user/chain.t: Fixed the example from PR 1504.
+
</font> 2010-03-04        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * user/conf.t: CONFIGURE_DISABLE_CLASSIC_NOTEPADS is typo of

<font color='#006600'>diff -u rtems/doc/user/chains.t:1.5 rtems/doc/user/chains.t:1.6
--- rtems/doc/user/chains.t:1.5 Thu Nov 20 15:13:03 2008
+++ rtems/doc/user/chains.t     Thu Apr 22 01:47:28 2010
</font><font color='#997700'>@@ -180,14 +180,15 @@
</font>   while (!@value{DIRPREFIX}chain_is_tail (chain, node))
   @{
     bar = (foo*) node;
<font color='#000088'>+    rtems_chain_node* next_node = node->next;
</font> 
     if (strcmp (match, bar->data) == 0)
     @{
<font color='#880000'>-      @value{DIRPREFIX}chain_node* next_node = node->next;
</font>       @value{DIRPREFIX}chain_extract (node);
       @value{DIRPREFIX}chain_append (out, node);
<font color='#880000'>-      node = next_node;<span style="background-color: #FF0000"> </span>
</font>     @}
<font color='#000088'>+
+    node = next_node;<span style="background-color: #FF0000"> </span>
</font>   @}
 @}
 @end example
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>