X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/edb8f44f06cf8a43defa1036bdd6011947d84e91..fb9c0b3360928887038a296c338025ced68e2d8c:/lib/bitset.c diff --git a/lib/bitset.c b/lib/bitset.c index ddbef843..24bfb879 100644 --- a/lib/bitset.c +++ b/lib/bitset.c @@ -303,7 +303,7 @@ bitset_print (FILE *file, bitset bset, bool verbose) { if (pos > 70) { - fprintf (file, "\n"); + fputc ('\n', file); pos = 0; } @@ -312,7 +312,7 @@ bitset_print (FILE *file, bitset bset, bool verbose) }; if (verbose) - fprintf (file, "}\n"); + fputs ("}\n", file); }