- Fixed some more printf usages, that should now be handled by eprintf.

This commit is contained in:
ccremers
2004-07-29 12:47:57 +00:00
parent 523b0ffd32
commit 17c6fe5136
4 changed files with 27 additions and 26 deletions

View File

@@ -111,12 +111,12 @@ void termmapPrint (Termmap f)
{
if (f != NULL)
{
printf ("\"");
eprintf ("\"");
termPrint (f->term);
printf ("\" -> %i", f->result);
eprintf ("\" -> %i", f->result);
if (f->next != NULL)
{
printf (", ");
eprintf (", ");
termmapPrint (f->next);
}
}