* fcntl.cc (_fcntl): Silence a compiler warning.
This commit is contained in:
parent
d47640a3d5
commit
e575a697ba
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue