diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2008-12-13 16:53:35 +0000 | 
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2008-12-13 16:53:35 +0000 | 
| commit | ad1b91250628898e52f418a203881e90d1b4bfc4 (patch) | |
| tree | 69b955cc608816e084328f44244ad95d04caeba7 /lib/libc | |
| parent | b09a01d59a564296a83cf1c577088c6357fac25d (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/stdio/fread.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/fread.c b/lib/libc/stdio/fread.c index 6ddfca6a2d55..851713be461f 100644 --- a/lib/libc/stdio/fread.c +++ b/lib/libc/stdio/fread.c @@ -50,7 +50,7 @@ __FBSDID("$FreeBSD$");  size_t  fread(void * __restrict buf, size_t size, size_t count, FILE * __restrict fp)  { -	int ret; +	size_t ret;  	FLOCKFILE(fp);  	ret = __fread(buf, size, count, fp);  | 
