Fix typos.

This commit is contained in:
Christopher Faylor 2000-11-07 19:00:02 +00:00
parent 442a3c7821
commit 64ef9db779

View File

@ -235,10 +235,10 @@ _addenv (const char *name, const char *value, int overwrite)
if (!__cygwin_environ) if (!__cygwin_environ)
{ {
#ifdef DEBUGING #ifdef DEBUGGING
try_to_debug (); try_to_debug ();
return -1; /* Oops. No more memory. */
#endif #endif
return -1; /* Oops. No more memory. */
} }
__cygwin_environ[offset + 1] = NULL; /* NULL terminate. */ __cygwin_environ[offset + 1] = NULL; /* NULL terminate. */
@ -598,7 +598,7 @@ environ_init (char **envp, int envc)
parse_options (newp + sizeof("CYGWIN=") - 1); parse_options (newp + sizeof("CYGWIN=") - 1);
if (*eq && conv_start_chars[(unsigned char)envp[i][0]]) if (*eq && conv_start_chars[(unsigned char)envp[i][0]])
posify (envp + i, *++eq ? eq : --eq); posify (envp + i, *++eq ? eq : --eq);
debug_printf ("%s", envp[i]); debug_printf ("%p: %s", envp[i], envp[i]);
} }
if (!sawTERM) if (!sawTERM)