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