summaryrefslogtreecommitdiff
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-03-09 14:13:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-03-09 14:13:44 +0000
commit6068f9b028d3b86cb388dbef86d283dde29a8f53 (patch)
treed70a78c9dc12ceaac5008d1937d1d912b264ad5d /cpukit/libcsupport
parentd7ad1f65fece41de5033289cdc81e80f4eb1e043 (diff)
2009-03-09 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1376/filesystem * libcsupport/include/rtems/libio.h, libfs/src/dosfs/fat_file.c, libfs/src/dosfs/msdos.h, libfs/src/dosfs/msdos_dir.c, libfs/src/dosfs/msdos_file.c, libfs/src/imfs/deviceio.c, libfs/src/imfs/imfs.h, libfs/src/imfs/imfs_directory.c, libfs/src/imfs/memfile.c: lseek handlers should return off_t.
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/include/rtems/libio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h
index cf0441cbac..9f36086b18 100644
--- a/cpukit/libcsupport/include/rtems/libio.h
+++ b/cpukit/libcsupport/include/rtems/libio.h
@@ -82,7 +82,7 @@ typedef int (*rtems_filesystem_ioctl_t)(
void *buffer
);
-typedef int (*rtems_filesystem_lseek_t)(
+typedef off_t (*rtems_filesystem_lseek_t)(
rtems_libio_t *iop,
off_t length,
int whence