str: Change "char" to "byte" in function names.
[pspp-builds.git] / src / data / dictionary.c
index 9222f7ec0ba85ab94bdc88952029f8e59fc4b3d5..0ca9f9e4ff50023543e1914ae83576ebaa27c6a2 100644 (file)
@@ -1262,7 +1262,7 @@ dict_set_documents (struct dictionary *d, const char *documents)
      final line with spaces. */
   remainder = ds_length (&d->documents) % DOC_LINE_LENGTH;
   if (remainder != 0)
-    ds_put_char_multiple (&d->documents, ' ', DOC_LINE_LENGTH - remainder);
+    ds_put_byte_multiple (&d->documents, ' ', DOC_LINE_LENGTH - remainder);
 }
 
 /* Drops the documents from dictionary D. */