* fork.cc (fork): Set sigframe here, since it can pause for a considerable

amount of time.
* environ.cc (_addenv): Add debugging.
* fhandler.cc: Eliminate unneeded include.
* smallprint.c: Ditto.
This commit is contained in:
Christopher Faylor
2000-10-23 03:35:50 +00:00
parent de7ba863d8
commit ad30b4ffca
7 changed files with 35 additions and 4 deletions

View File

@ -1152,7 +1152,7 @@ fhandler_console::write (const void *vsrc, size_t len)
{
case normal:
src = write_normal (src, end);
if (src == 0) /* write_normal fail */
if (!src) /* write_normal failed */
return -1;
break;
case gotesc: