1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Removed a couple of compiler warnings; fishing for more...

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15040 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-10-11 09:28:29 +00:00
parent ccfea73fc5
commit b861ed19c4
5 changed files with 18 additions and 21 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: uio_readv.c,v 1.4 2005-07-06 18:48:53 obarthel Exp $
* $Id: uio_readv.c,v 1.5 2005-10-11 09:28:29 obarthel Exp $
*
* :ts=4
*
@ -55,7 +55,7 @@ readv(int file_descriptor,const struct iovec *iov,int vec_count)
ssize_t total_num_bytes_read;
ssize_t part_num_bytes_read;
ssize_t num_bytes_read;
struct fd * fd;
struct fd * fd = NULL;
int i;
ENTER();