commit | f69554b9e859f5672afda827a9f8772ff41d0f59 | [log] [tgz] |
---|---|---|
author | Anthony Liguori <aliguori@us.ibm.com> | Mon Aug 15 11:17:37 2011 -0500 |
committer | Anthony Liguori <aliguori@us.ibm.com> | Mon Aug 22 10:17:43 2011 -0500 |
tree | 51f0b0dba5c3f5acbff0827d6e8f9cef59897c00 | |
parent | 27143a445b99a283b3c6529738ba17aa0271746e [diff] [blame] |
char: qemu_chr_open_opts() -> qemu_chr_new_from_opts() Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
diff --git a/vl.c b/vl.c index 321bc15..5f1a177 100644 --- a/vl.c +++ b/vl.c
@@ -1689,7 +1689,7 @@ { CharDriverState *chr; - chr = qemu_chr_open_opts(opts, NULL); + chr = qemu_chr_new_from_opts(opts, NULL); if (!chr) return -1; return 0;