2009-03-12 Santosh G Vattam <vattam.santosh@gmail.com>

PR 1378/filesystem
	* libfs/src/imfs/deviceio.c: IMFS device lseek should return the
	current offset.
This commit is contained in:
Joel Sherrill
2009-03-12 21:13:36 +00:00
parent 9f61de9ef6
commit c614948571
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2009-03-12 Santosh G Vattam <vattam.santosh@gmail.com>
PR 1378/filesystem
* libfs/src/imfs/deviceio.c: IMFS device lseek should return the
current offset.
2009-03-09 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1376/filesystem

View File

@@ -241,7 +241,7 @@ off_t device_lseek(
int whence
)
{
return 0;
return offset;
}
/*