str: Change "char" to "byte" in function names.
[pspp-builds.git] / src / language / expressions / parse.c
index f2b4f1c78b4cc2b4a85f6ea752e74990d19c952b..e4af2db80551f6f48c0a4327a819aeaaf24ac189 100644 (file)
@@ -1149,7 +1149,7 @@ put_invocation (struct string *s,
         ds_put_cstr (s, ", ");
       ds_put_cstr (s, operations[expr_node_returns (args[i])].prototype);
     }
-  ds_put_char (s, ')');
+  ds_put_byte (s, ')');
 }
 
 static void
@@ -1176,7 +1176,7 @@ no_match (const char *func_name,
       for (f = first; f < last; f++)
         ds_put_format (&s, "\n%s", f->prototype);
     }
-  ds_put_char (&s, '.');
+  ds_put_byte (&s, '.');
 
   msg (SE, "%s", ds_cstr (&s));