summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/src/ramdisk.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-08-25 15:07:58 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-08-25 15:07:58 +0000
commite03c37ae5b2885a48679ceb3bee6e4d23e44f057 (patch)
tree9bfe6071bc618ee76d3094bc6a2c621ae9b10055 /cpukit/libblock/src/ramdisk.c
parentChanged invalid usage of a boolean type to a proper integer type in calc_dbat... (diff)
downloadrtems-e03c37ae5b2885a48679ceb3bee6e4d23e44f057.tar.bz2
s/rtems_boolean/bool/g.
Diffstat (limited to 'cpukit/libblock/src/ramdisk.c')
-rw-r--r--cpukit/libblock/src/ramdisk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libblock/src/ramdisk.c b/cpukit/libblock/src/ramdisk.c
index 6ec3b13386..7d7546772b 100644
--- a/cpukit/libblock/src/ramdisk.c
+++ b/cpukit/libblock/src/ramdisk.c
@@ -37,8 +37,8 @@ struct ramdisk {
int block_size; /* RAM disk block size */
int block_num; /* Number of blocks on this RAM disk */
void *area; /* RAM disk memory area */
- rtems_boolean initialized;/* RAM disk is initialized */
- rtems_boolean malloced; /* != 0, if memory allocated by malloc for this
+ bool initialized;/* RAM disk is initialized */
+ bool malloced; /* != 0, if memory allocated by malloc for this
RAM disk */
#if RTEMS_RAMDISK_TRACE
int info_level; /* Trace level */