summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/devfs/devwrite.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-18 13:21:49 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-18 13:21:49 +0000
commitec9e8a9bae3aad55196fa6460fcbc665194a8be2 (patch)
treecb6ea6f028eaa4cd94251d3f5025d96a4555a1c4 /cpukit/libfs/src/devfs/devwrite.c
parentRemove *.orig files having crept into patch. (diff)
downloadrtems-ec9e8a9bae3aad55196fa6460fcbc665194a8be2.tar.bz2
2008-09-18 Miao Yan <yanmiaobest@gmail.com>
* libfs/src/devfs/devclose.c, libfs/src/devfs/devfs_eval.c, libfs/src/devfs/devioctl.c, libfs/src/devfs/devopen.c, libfs/src/devfs/devread.c, libfs/src/devfs/devwrite.c: Fix warnings.
Diffstat (limited to 'cpukit/libfs/src/devfs/devwrite.c')
-rw-r--r--cpukit/libfs/src/devfs/devwrite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libfs/src/devfs/devwrite.c b/cpukit/libfs/src/devfs/devwrite.c
index 2a6bd5ab7a..400422fd64 100644
--- a/cpukit/libfs/src/devfs/devwrite.c
+++ b/cpukit/libfs/src/devfs/devwrite.c
@@ -23,9 +23,9 @@ ssize_t devFS_write(
{
rtems_libio_rw_args_t args;
rtems_status_code status;
- rtems_driver_name_t *np;
+ rtems_device_name_t *np;
- np = (rtems_driver_name_t *)iop->file_info;
+ np = (rtems_device_name_t *)iop->file_info;
args.iop = iop;
args.offset = iop->offset;