change log for rtems (2010-06-01)
rtems-vc at rtems.org
rtems-vc at rtems.org
Tue Jun 1 11:11:21 UTC 2010
*ralf*:
Fix ChangeLog.
M 1.2341 cpukit/ChangeLog
diff -u rtems/cpukit/ChangeLog:1.2340 rtems/cpukit/ChangeLog:1.2341
--- rtems/cpukit/ChangeLog:1.2340 Mon May 31 15:18:04 2010
+++ rtems/cpukit/ChangeLog Tue Jun 1 05:39:22 2010
@@ -52,6 +52,10 @@
* sapi/include/confdefs.h: Add file system configuration support.
+2010-05-30 Ralf Corsépius <ralf.corsepius at rtems.org>
+
+ * libfs/src/nfsclient/src/rpcio.c: Warning removal.
+
2010-05-29 Ralf Corsépius <ralf.corsepius at rtems.org>
PR 1531/newlib:
*ralf*:
2010-06-01 Ralf Corsépius <ralf.corsepius at rtems.org>
* libfs/src/nfsclient/src/xdr_mbuf.c: Warning removal.
M 1.2342 cpukit/ChangeLog
M 1.9 cpukit/libfs/src/nfsclient/src/xdr_mbuf.c
diff -u rtems/cpukit/ChangeLog:1.2341 rtems/cpukit/ChangeLog:1.2342
--- rtems/cpukit/ChangeLog:1.2341 Tue Jun 1 05:39:22 2010
+++ rtems/cpukit/ChangeLog Tue Jun 1 05:41:40 2010
@@ -1,3 +1,7 @@
+2010-06-01 Ralf Corsépius <ralf.corsepius at rtems.org>
+
+ * libfs/src/nfsclient/src/xdr_mbuf.c: Warning removal.
+
2010-05-31 Joel Sherrill <joel.sherrill at oarcorp.com>
* libcsupport/include/rtems/libio.h: Remove if 0 section. Formatting.
diff -u rtems/cpukit/libfs/src/nfsclient/src/xdr_mbuf.c:1.8 rtems/cpukit/libfs/src/nfsclient/src/xdr_mbuf.c:1.9
--- rtems/cpukit/libfs/src/nfsclient/src/xdr_mbuf.c:1.8 Fri May 28 23:30:47 2010
+++ rtems/cpukit/libfs/src/nfsclient/src/xdr_mbuf.c Tue Jun 1 05:41:40 2010
@@ -186,7 +186,8 @@
MBPrivate mbp;
xdrs->x_op = op;
- assert( mbp = (MBPrivate)my_malloc(sizeof(*mbp)) );
+ mbp = (MBPrivate)my_malloc(sizeof(*mbp));
+ assert( mbp );
xdrs->x_base = (caddr_t) mbp;
mbp->mchain = mbuf;
*ralf*:
2010-06-01 Ralf Corsépius <ralf.corsepius at rtems.org>
* libcsupport/include/rtems/libio.h, libcsupport/src/mount-mgr.c:
Add missing 'const'.
M 1.2343 cpukit/ChangeLog
M 1.64 cpukit/libcsupport/include/rtems/libio.h
M 1.2 cpukit/libcsupport/src/mount-mgr.c
diff -u rtems/cpukit/ChangeLog:1.2342 rtems/cpukit/ChangeLog:1.2343
--- rtems/cpukit/ChangeLog:1.2342 Tue Jun 1 05:41:40 2010
+++ rtems/cpukit/ChangeLog Tue Jun 1 05:42:51 2010
@@ -1,5 +1,7 @@
2010-06-01 Ralf Corsépius <ralf.corsepius at rtems.org>
+ * libcsupport/include/rtems/libio.h, libcsupport/src/mount-mgr.c:
+ Add missing 'const'.
* libfs/src/nfsclient/src/xdr_mbuf.c: Warning removal.
2010-05-31 Joel Sherrill <joel.sherrill at oarcorp.com>
diff -u rtems/cpukit/libcsupport/include/rtems/libio.h:1.63 rtems/cpukit/libcsupport/include/rtems/libio.h:1.64
--- rtems/cpukit/libcsupport/include/rtems/libio.h:1.63 Mon May 31 15:18:04 2010
+++ rtems/cpukit/libcsupport/include/rtems/libio.h Tue Jun 1 05:42:51 2010
@@ -314,7 +314,7 @@
* Get the next entry in the file system table.
*/
const rtems_filesystem_table_t*
-rtems_filesystem_table_next( rtems_filesystem_table_t *entry );
+rtems_filesystem_table_next( const rtems_filesystem_table_t *entry );
/*
* Get the first entry in the mount table.
diff -u rtems/cpukit/libcsupport/src/mount-mgr.c:1.1 rtems/cpukit/libcsupport/src/mount-mgr.c:1.2
--- rtems/cpukit/libcsupport/src/mount-mgr.c:1.1 Mon May 31 09:03:41 2010
+++ rtems/cpukit/libcsupport/src/mount-mgr.c Tue Jun 1 05:42:52 2010
@@ -65,7 +65,7 @@
*/
const rtems_filesystem_table_t*
rtems_filesystem_table_next(
- rtems_filesystem_table_t *entry
+ const rtems_filesystem_table_t *entry
)
{
const rtems_filesystem_table_t* fs;
*ralf*:
2010-06-01 Ralf Corsépius <ralf.corsepius at rtems.org>
* libmisc/shell/print-ls.c: Remove (long) cast of st_ino.
M 1.2344 cpukit/ChangeLog
M 1.7 cpukit/libmisc/shell/print-ls.c
diff -u rtems/cpukit/ChangeLog:1.2343 rtems/cpukit/ChangeLog:1.2344
--- rtems/cpukit/ChangeLog:1.2343 Tue Jun 1 05:42:51 2010
+++ rtems/cpukit/ChangeLog Tue Jun 1 05:46:15 2010
@@ -1,5 +1,6 @@
2010-06-01 Ralf Corsépius <ralf.corsepius at rtems.org>
+ * libmisc/shell/print-ls.c: Remove (long) cast of st_ino.
* libcsupport/include/rtems/libio.h, libcsupport/src/mount-mgr.c:
Add missing 'const'.
* libfs/src/nfsclient/src/xdr_mbuf.c: Warning removal.
diff -u rtems/cpukit/libmisc/shell/print-ls.c:1.6 rtems/cpukit/libmisc/shell/print-ls.c:1.7
--- rtems/cpukit/libmisc/shell/print-ls.c:1.6 Wed Feb 17 18:24:25 2010
+++ rtems/cpukit/libmisc/shell/print-ls.c Tue Jun 1 05:46:16 2010
@@ -132,8 +132,7 @@
continue;
sp = p->fts_statp;
if (f_inode)
- (void)printf("%*lu ", dp->s_inode,
- (unsigned long)sp->st_ino);
+ (void)printf("%*lu ", dp->s_inode, sp->st_ino);
if (f_size && !f_humanize) {
(void)printf("%*llu ", dp->s_block,
(long long)howmany(sp->st_blocks, blocksize));
@@ -383,7 +382,7 @@
sp = p->fts_statp;
chcnt = 0;
if (f_inode)
- chcnt += printf("%*lu ", inodefield, (unsigned long)sp->st_ino);
+ chcnt += printf("%*lu ", inodefield, sp->st_ino);
if (f_size) {
#if RTEMS_REMOVED
if (f_humanize) {
--
Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20100601/0dd570bf/attachment.html>
More information about the vc
mailing list