diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-15 11:17:37 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 10:17:43 -0500 |
commit | f69554b9e859f5672afda827a9f8772ff41d0f59 (patch) | |
tree | 51f0b0dba5c3f5acbff0827d6e8f9cef59897c00 /vl.c | |
parent | 27143a445b99a283b3c6529738ba17aa0271746e (diff) |
char: qemu_chr_open_opts() -> qemu_chr_new_from_opts()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1689,7 +1689,7 @@ static int chardev_init_func(QemuOpts *opts, void *opaque) { CharDriverState *chr; - chr = qemu_chr_open_opts(opts, NULL); + chr = qemu_chr_new_from_opts(opts, NULL); if (!chr) return -1; return 0; |