summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/src/ide_part_table.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 07:44:48 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 07:44:48 +0000
commit4f971343a534e8480a3eb34eb6f5b25be373d17e (patch)
treef13080b4b8d993ece0c247c283cff194ed8db246 /cpukit/libblock/src/ide_part_table.c
parent2008-09-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-4f971343a534e8480a3eb34eb6f5b25be373d17e.tar.bz2
Convert to using "bool".
Diffstat (limited to 'cpukit/libblock/src/ide_part_table.c')
-rw-r--r--cpukit/libblock/src/ide_part_table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libblock/src/ide_part_table.c b/cpukit/libblock/src/ide_part_table.c
index 0a55a19ef6..cc8763a584 100644
--- a/cpukit/libblock/src/ide_part_table.c
+++ b/cpukit/libblock/src/ide_part_table.c
@@ -89,7 +89,7 @@ get_sector(dev_t dev, uint32_t sector_num, rtems_sector_data_t **sector)
* sector - sector to check
*
* RETURNS:
- * TRUE if sector has msdos signature, FALSE otherwise
+ * true if sector has msdos signature, false otherwise
*/
static bool
msdos_signature_check (rtems_sector_data_t *sector)
@@ -109,7 +109,7 @@ msdos_signature_check (rtems_sector_data_t *sector)
* type - type of partition to check
*
* RETURNS:
- * TRUE if partition type is extended, FALSE otherwise
+ * true if partition type is extended, false otherwise
*/
static bool
is_extended(uint8_t type)
@@ -125,7 +125,7 @@ is_extended(uint8_t type)
* type - type of partition to check
*
* RETURNS:
- * TRUE if partition type is extended, FALSE otherwise
+ * true if partition type is extended, false otherwise
*/
static bool
is_fat_partition(uint8_t type)