From 01cf5d0f5d80baf98fcbd1e4ee0a7dc1c4f531b8 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 23 Feb 2000 04:07:13 +0000 Subject: Respond to more g++ warnings relating to initializing structures. --- winsup/cygwin/exceptions.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'winsup/cygwin/exceptions.cc') 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; -- cgit v1.2.3