* fcntl.cc (_fcntl): Silence a compiler warning.

This commit is contained in:
Christopher Faylor 2003-12-02 23:47:28 +00:00
parent d47640a3d5
commit e575a697ba
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2003-12-02 Christopher Faylor <cgf@redhat.com>
* fcntl.cc (_fcntl): Silence a compiler warning.
2003-12-02 Pierre Humblet <pierre.humblet@ieee.org>
* pinfo.cc (pinfo::init): Use shared_name to construct the mapname.

View File

@ -56,7 +56,7 @@ _fcntl (int fd, int cmd,...)
{
void *arg = NULL;
va_list args;
struct __flock32 *src;
struct __flock32 *src = NULL;
struct __flock64 dst;
va_start (args, cmd);