diff options
author | Anthony Liguori | 2011-08-15 18:17:28 +0200 |
---|---|---|
committer | Anthony Liguori | 2011-08-22 17:17:15 +0200 |
commit | 2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce (patch) | |
tree | b9a5883e50ebcee0f3f506de1523b84a597f6e8f /gdbstub.c | |
parent | tcg/ppc64: fix 16/32 mixup (diff) | |
download | qemu-2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce.tar.gz qemu-2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce.tar.xz qemu-2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce.zip |
char: rename qemu_chr_write() -> qemu_chr_fe_write()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'gdbstub.c')
-rw-r--r-- | gdbstub.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -382,7 +382,7 @@ static void put_buffer(GDBState *s, const uint8_t *buf, int len) } } #else - qemu_chr_write(s->chr, buf, len); + qemu_chr_fe_write(s->chr, buf, len); #endif } |