summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-05-06 14:57:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-05-06 14:57:43 +0000
commitb17ff4913cc7f3d87e41da83a26655b4f0b9001f (patch)
tree2cc4cb2902f58bbe6e087048eb8527000f9ae133 /cpukit/libblock
parent2005-05-06 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-b17ff4913cc7f3d87e41da83a26655b4f0b9001f.tar.bz2
2005-05-06 Joel Sherrill <joel@OARcorp.com>
* libblock/src/blkdev.c, libfs/src/dosfs/fat_file.c, libfs/src/dosfs/fat_file.h, libfs/src/dosfs/msdos.h, libfs/src/dosfs/msdos_create.c, libfs/src/dosfs/msdos_dir.c, libfs/src/dosfs/msdos_initsupp.c, libfs/src/dosfs/msdos_misc.c: Removed warnings.
Diffstat (limited to 'cpukit/libblock')
-rw-r--r--cpukit/libblock/src/blkdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libblock/src/blkdev.c b/cpukit/libblock/src/blkdev.c
index 537950eb25..e133e5eaf2 100644
--- a/cpukit/libblock/src/blkdev.c
+++ b/cpukit/libblock/src/blkdev.c
@@ -33,7 +33,7 @@ rtems_blkdev_generic_read(
rtems_libio_rw_args_t *args = arg;
int block_size_log2;
int block_size;
- unsigned char *buf;
+ char *buf;
unsigned int count;
unsigned int block;
unsigned int blkofs;
@@ -93,7 +93,7 @@ rtems_blkdev_generic_write(
rtems_libio_rw_args_t *args = arg;
int block_size_log2;
int block_size;
- unsigned char *buf;
+ char *buf;
unsigned int count;
unsigned int block;
unsigned int blkofs;