commit | fa5efccb2a063f1dee46ed3ebd9192b318009f65 | [log] [tgz] |
---|---|---|
author | Anthony Liguori <aliguori@us.ibm.com> | Mon Aug 15 11:17:30 2011 -0500 |
committer | Anthony Liguori <aliguori@us.ibm.com> | Mon Aug 22 10:17:16 2011 -0500 |
tree | f426604b4152eabea1addc7e99b88ad32d23d597 | |
parent | e7e71b0ec62d2954635ba8a2462a20a60fa2c147 [diff] [blame] |
char: rename qemu_chr_read() -> qemu_chr_be_write() Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
diff --git a/spice-qemu-char.c b/spice-qemu-char.c index 684024b..f3e7702 100644 --- a/spice-qemu-char.c +++ b/spice-qemu-char.c
@@ -39,7 +39,7 @@ if (qemu_chr_can_read(scd->chr) < last_out) { break; } - qemu_chr_read(scd->chr, p, last_out); + qemu_chr_be_write(scd->chr, p, last_out); out += last_out; len -= last_out; p += last_out;