diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-15 11:17:28 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 10:17:15 -0500 |
| commit | 2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce (patch) | |
| tree | b9a5883e50ebcee0f3f506de1523b84a597f6e8f /monitor.c | |
| parent | 0bf1dbdcc935dfc220a93cd990e947e90706aec6 (diff) | |
| download | focaccia-qemu-2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce.tar.gz focaccia-qemu-2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce.zip | |
char: rename qemu_chr_write() -> qemu_chr_fe_write()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'monitor.c')
| -rw-r--r-- | monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor.c b/monitor.c index 39791dc555..f95d959906 100644 --- a/monitor.c +++ b/monitor.c @@ -247,7 +247,7 @@ static int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func, void monitor_flush(Monitor *mon) { if (mon && mon->outbuf_index != 0 && !mon->mux_out) { - qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index); + qemu_chr_fe_write(mon->chr, mon->outbuf, mon->outbuf_index); mon->outbuf_index = 0; } } |