X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fascii.c;h=06bd190633f8e5d95c3994fe3b6c743edc180192;hb=refs%2Fbuilds%2F149%2Fpspp;hp=00e3f33cbdfba56df6f6f290c0b4dc7d8a5e0da8;hpb=d11d6e038e2e60c6b876c7018ad181a08e6cef8d;p=pspp diff --git a/src/output/ascii.c b/src/output/ascii.c index 00e3f33cbd..06bd190633 100644 --- a/src/output/ascii.c +++ b/src/output/ascii.c @@ -901,7 +901,7 @@ static void output_title_line (FILE *out, int width, const char *left, const char *right) { struct string s = DS_EMPTY_INITIALIZER; - ds_put_char_multiple (&s, ' ', width); + ds_put_byte_multiple (&s, ' ', width); if (left != NULL) { size_t length = MIN (strlen (left), width); @@ -912,7 +912,7 @@ output_title_line (FILE *out, int width, const char *left, const char *right) size_t length = MIN (strlen (right), width); memcpy (ds_end (&s) - length, right, length); } - ds_put_char (&s, '\n'); + ds_put_byte (&s, '\n'); fputs (ds_cstr (&s), out); ds_destroy (&s); }