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/exceptions.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/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 198824c42..a1ab2678f 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -365,9 +365,9 @@ try_to_debug () BOOL dbg; - PROCESS_INFORMATION pi = {0}; + PROCESS_INFORMATION pi = {NULL, 0, 0, 0}; - STARTUPINFO si = {0}; + STARTUPINFO si = {0, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL}; si.lpReserved = NULL; si.lpDesktop = NULL; si.dwFlags = 0; |