warnings fix: sanitized 'write'alike callback prototype (int retval -> ssize_t)

Signed-off-by: Sergei Trofimovich <slyfox@inbox.ru>
This commit is contained in:
Sergei Trofimovich 2009-04-23 22:14:11 +03:00
parent baef389ce7
commit 0d281515a6

View File

@ -834,7 +834,7 @@ vfs_s_read (void *fh, char *buffer, int count)
return -1; return -1;
} }
static int static ssize_t
vfs_s_write (void *fh, const char *buffer, int count) vfs_s_write (void *fh, const char *buffer, int count)
{ {
int n; int n;