From f69554b9e859f5672afda827a9f8772ff41d0f59 Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Mon, 15 Aug 2011 11:17:37 -0500 Subject: char: qemu_chr_open_opts() -> qemu_chr_new_from_opts() Signed-off-by: Anthony Liguori --- vl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vl.c') diff --git a/vl.c b/vl.c index 321bc15..5f1a177 100644 --- a/vl.c +++ b/vl.c @@ -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; -- cgit v1.1