char: rename qemu_chr_printf() -> qemu_chr_fe_printf()

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Anthony Liguori 2011-08-15 11:17:29 -05:00
parent 2cc6e0a142
commit e7e71b0ec6
3 changed files with 13 additions and 13 deletions

View file

@ -179,7 +179,7 @@ void qemu_chr_accept_input(CharDriverState *s)
s->chr_accept_input(s);
}
void qemu_chr_printf(CharDriverState *s, const char *fmt, ...)
void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...)
{
char buf[READ_BUF_LEN];
va_list ap;