Write to 1 not 0

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13526 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-04-22 21:57:36 +00:00
parent 6473edaac7
commit 591ce7b3de
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
2002-04-22 Adam Fedor <fedor@gnu.org>
* Tools/gdomap.c (gdomap_log): For LOG_INFO, write to 1, not 0.
* Tools/make_strings: New tool from Alexander Malmberg
<alexander@malmberg.org>

View file

@ -260,8 +260,8 @@ gdomap_log (int prio)
}
else if (prio == LOG_INFO)
{
write (0, ebuf, strlen (ebuf));
write (0, "\n", 1);
write (1, ebuf, strlen (ebuf));
write (1, "\n", 1);
}
else
{