Fixed read/write return types.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8492 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-07-28 09:49:29 +00:00
parent 660a04f377
commit 323fe5330d
1 changed files with 2 additions and 2 deletions

View File

@ -993,7 +993,7 @@ pipefs_fsync(fs_volume _volume, fs_vnode _v)
}
static ssize_t
static status_t
pipefs_read(fs_volume _volume, fs_vnode _node, fs_cookie _cookie, off_t /*pos*/,
void *buffer, size_t *_length)
{
@ -1026,7 +1026,7 @@ pipefs_read(fs_volume _volume, fs_vnode _node, fs_cookie _cookie, off_t /*pos*/,
}
static ssize_t
static status_t
pipefs_write(fs_volume _volume, fs_vnode _node, fs_cookie _cookie, off_t /*pos*/,
const void *buffer, size_t *_length)
{