diff options
author | Christopher Faylor <me@cgf.cx> | 2000-02-21 05:20:38 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-02-21 05:20:38 +0000 |
commit | 9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9 (patch) | |
tree | c7033544db3e6e96f568e08cc0b283c58cb24e94 /winsup/cygwin/environ.cc | |
parent | 17869f8bf7adce5296d844c51c14e89f45fc4054 (diff) | |
download | cygnal-9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9.tar.gz cygnal-9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9.tar.bz2 cygnal-9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9.zip |
Respond to a multitude of g++ warnings.
Diffstat (limited to 'winsup/cygwin/environ.cc')
-rw-r--r-- | winsup/cygwin/environ.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc index e59802c81..56ec6d847 100644 --- a/winsup/cygwin/environ.cc +++ b/winsup/cygwin/environ.cc @@ -42,7 +42,7 @@ static win_env conv_envvars[] = return_MAX_PATH, return_MAX_PATH}, {"LD_LIBRARY_PATH=", 16, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path, return_MAX_PATH, return_MAX_PATH}, - {NULL} + {NULL, 0, NULL, NULL, NULL, NULL, 0, 0} }; void @@ -260,7 +260,7 @@ unsetenv (const char *name) /* Turn environment variable part of a=b string into uppercase. */ -static void __inline +static __inline__ void ucenv (char *p, char *eq) { /* Amazingly, NT has a case sensitive environment name list, |