Remove c_printstr

This renames c_printstr, removing a layer of indirection.
This commit is contained in:
Tom Tromey 2022-02-11 18:14:17 -07:00
parent c1c7fe59f6
commit 3a3bb6eb36
4 changed files with 7 additions and 26 deletions

View file

@ -292,8 +292,9 @@ rust_language::printstr (struct ui_file *stream, struct type *type,
{
/* This is probably some C string, so let's let C deal with
it. */
c_printstr (stream, type, string, length, user_encoding,
force_ellipses, options);
language_defn::printstr (stream, type, string, length,
user_encoding, force_ellipses,
options);
return;
}
}