mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
6473edaac7
commit
591ce7b3de
2 changed files with 4 additions and 2 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue