<!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 (2011-02-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>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-02-22 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libblock/src/media-path.c: Remove warnings.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2722&r2=text&tr2=1.2723&diff_format=h">M</a></td><td width='1%'>1.2723</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libblock/src/media-path.c.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/libblock/src/media-path.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2722 rtems/cpukit/ChangeLog:1.2723
--- rtems/cpukit/ChangeLog:1.2722       Mon Feb 21 11:00:51 2011
+++ rtems/cpukit/ChangeLog      Tue Feb 22 09:11:05 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-02-22    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * libblock/src/media-path.c: Remove warnings.
+
</font> 2011-02-21        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * sapi/include/confdefs.h,

<font color='#006600'>diff -u rtems/cpukit/libblock/src/media-path.c:1.2 rtems/cpukit/libblock/src/media-path.c:1.3
--- rtems/cpukit/libblock/src/media-path.c:1.2  Wed Aug 25 03:26:21 2010
+++ rtems/cpukit/libblock/src/media-path.c      Tue Feb 22 09:11:06 2011
</font><font color='#997700'>@@ -38,7 +38,10 @@
</font>   char *const s = malloc(size);
 
   if (s != NULL) {
<font color='#880000'>-    int rv = snprintf(s, size, "%s/%s-%" PRIu32, prefix, name, major);
</font><font color='#000088'>+#ifndef NDEBUG
+    int rv =<span style="background-color: #FF0000"> </span>
+#endif
+    snprintf(s, size, "%s/%s-%" PRIu32, prefix, name, major);
</font>     assert(rv < (int) size);
   }
 
<font color='#997700'>@@ -72,7 +75,10 @@
</font>   char *const s = malloc(size);
 
   if (s != NULL) {
<font color='#880000'>-    int rv = snprintf(s, size, "%s-%" PRIu32, path, minor);
</font><font color='#000088'>+#ifndef NDEBUG
+    int rv =<span style="background-color: #FF0000"> </span>
+#endif
+    snprintf(s, size, "%s-%" PRIu32, path, minor);
</font>     assert(rv < (int) size);
   }
 
</pre>
<p> </p>
<a name='cs2'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-02-22 Ralf Corsépius <ralf.corsepius@rtems.org>

        * rtems/inline/rtems/rtems/status.inl: Add missing include.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2723&r2=text&tr2=1.2724&diff_format=h">M</a></td><td width='1%'>1.2724</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/rtems/inline/rtems/rtems/status.inl.diff?r1=text&tr1=1.17&r2=text&tr2=1.18&diff_format=h">M</a></td><td width='1%'>1.18</td><td width='100%'>cpukit/rtems/inline/rtems/rtems/status.inl</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2723 rtems/cpukit/ChangeLog:1.2724
--- rtems/cpukit/ChangeLog:1.2723       Tue Feb 22 09:11:05 2011
+++ rtems/cpukit/ChangeLog      Tue Feb 22 09:12:08 2011
</font><font color='#997700'>@@ -1,5 +1,9 @@
</font> 2011-02-22        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * rtems/inline/rtems/rtems/status.inl: Add missing include.
+
+2011-02-22     Ralf Corsépius <ralf.corsepius@rtems.org>
+
</font>   * libblock/src/media-path.c: Remove warnings.
 
 2011-02-21     Joel Sherrill <joel.sherrill@oarcorp.com>

<font color='#006600'>diff -u rtems/cpukit/rtems/inline/rtems/rtems/status.inl:1.17 rtems/cpukit/rtems/inline/rtems/rtems/status.inl:1.18
--- rtems/cpukit/rtems/inline/rtems/rtems/status.inl:1.17       Sat Jun 12 01:40:38 2010
+++ rtems/cpukit/rtems/inline/rtems/rtems/status.inl    Tue Feb 22 09:12:08 2011
</font><font color='#997700'>@@ -22,6 +22,8 @@
</font> #ifndef _RTEMS_RTEMS_STATUS_INL
 #define _RTEMS_RTEMS_STATUS_INL
 
<font color='#000088'>+#include <rtems/score/basedefs.h>
+
</font> /**
  *  @addtogroup ClassicStatus
  *  @{
</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>