diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-15 11:17:29 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 10:17:15 -0500 |
commit | e7e71b0ec62d2954635ba8a2462a20a60fa2c147 (patch) | |
tree | cd9da9068a252357c80b4f4498b87f93e15c0986 /qemu-char.h | |
parent | 2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce (diff) |
char: rename qemu_chr_printf() -> qemu_chr_fe_printf()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-char.h')
-rw-r--r-- | qemu-char.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-char.h b/qemu-char.h index a4865fce85..72c457b0d2 100644 --- a/qemu-char.h +++ b/qemu-char.h @@ -85,7 +85,7 @@ void qemu_chr_set_echo(struct CharDriverState *chr, bool echo); void qemu_chr_guest_open(struct CharDriverState *chr); void qemu_chr_guest_close(struct CharDriverState *chr); void qemu_chr_close(CharDriverState *chr); -void qemu_chr_printf(CharDriverState *s, const char *fmt, ...) +void qemu_chr_fe_printf(CharDriverState *s, const char *fmt, ...) GCC_FMT_ATTR(2, 3); int qemu_chr_fe_write(CharDriverState *s, const uint8_t *buf, int len); void qemu_chr_send_event(CharDriverState *s, int event); |