summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-04-13 03:10:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-04-13 03:10:03 +0000
commit7a5e8fb6ce0628d3b1f89f80663e571c5a37f200 (patch)
treecdac112bdb09a8830d2d5f600059a3fa63649792 /cpukit
parent2007-04-12 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-7a5e8fb6ce0628d3b1f89f80663e571c5a37f200.tar.bz2
2007-04-13 Ralf Corsépius <ralf.corsepius@rtems.org>
* score/include/rtems/score/object.h: Use size_t for byte sizes.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/score/include/rtems/score/object.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index b382310474..5949ed0b97 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2007-04-13 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * score/include/rtems/score/object.h: Use size_t for byte sizes.
+
2007-04-12 Joel Sherrill <joel@OARcorp.com>
* itron/src/rsm_tsk.c: Correct error returned.
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/score/include/rtems/score/object.h
index 3c63ce92b6..3e03213dd1 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/score/include/rtems/score/object.h
@@ -331,7 +331,7 @@ typedef struct {
/** This is the number of objects in a block. */
uint32_t allocation_size;
/** This is the size in bytes of each object instance. */
- uint32_t size;
+ size_t size;
/** This points to the table of local objects. */
Objects_Control **local_table;
/** This points to the table of local object names. */