Fix a call of fprintf().
This commit is contained in:
parent
654d98cbb4
commit
f7bdabb29d
@ -30,7 +30,7 @@ void
|
||||
print_wrap (char *str, int len, int *n)
|
||||
{
|
||||
*n += len;
|
||||
fprintf (stdout, str);
|
||||
fprintf (stdout, "%s", str);
|
||||
if (*n >= 50)
|
||||
{
|
||||
fprintf (stdout, "\n");
|
||||
|
Loading…
Reference in New Issue
Block a user