diff options
author | Christopher Faylor <me@cgf.cx> | 2000-02-23 04:07:13 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-02-23 04:07:13 +0000 |
commit | 01cf5d0f5d80baf98fcbd1e4ee0a7dc1c4f531b8 (patch) | |
tree | e8ad6225e248c2869b6870f95dd07a2a9b7cfcb3 /winsup/cygwin/sigproc.cc | |
parent | 237e6cfa8284cd2718fecca62aac0e3034b120eb (diff) | |
download | cygnal-01cf5d0f5d80baf98fcbd1e4ee0a7dc1c4f531b8.tar.gz cygnal-01cf5d0f5d80baf98fcbd1e4ee0a7dc1c4f531b8.tar.bz2 cygnal-01cf5d0f5d80baf98fcbd1e4ee0a7dc1c4f531b8.zip |
Respond to more g++ warnings relating to initializing structures.
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r-- | winsup/cygwin/sigproc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index b4bd1ef1e..f924a4c59 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -97,7 +97,7 @@ Static pinfo *zombies[PSIZE] = {NULL}; // All my deceased children info Static int nchildren = 0; // Number of active children Static int nzombies = 0; // Number of deceased children -Static waitq waitq_head = {0}; // Start of queue for wait'ing threads +Static waitq waitq_head = {0, 0, 0, 0, 0, 0, 0};// Start of queue for wait'ing threads Static waitq waitq_main; // Storage for main thread DWORD NO_COPY maintid = 0; // ID of the main thread |