diff options
author | blueswir1 | 2009-04-23 20:42:30 +0200 |
---|---|---|
committer | blueswir1 | 2009-04-23 20:42:30 +0200 |
commit | 96248fd89093579dd7257bda3357a28d3c848bba (patch) | |
tree | 9cff2d29015b1952f25ac84c6f8cafbbd4f372bf /hw/xen_console.c | |
parent | Use a more natural order (diff) | |
download | qemu-96248fd89093579dd7257bda3357a28d3c848bba.tar.gz qemu-96248fd89093579dd7257bda3357a28d3c848bba.tar.xz qemu-96248fd89093579dd7257bda3357a28d3c848bba.zip |
Fix typo, thanks to Andreas Faerber for spotting
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7235 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/xen_console.c')
-rw-r--r-- | hw/xen_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xen_console.c b/hw/xen_console.c index 4280000c56..27a0083d27 100644 --- a/hw/xen_console.c +++ b/hw/xen_console.c @@ -189,7 +189,7 @@ static int con_init(struct XenDevice *xendev) free(dom); type = xenstore_read_str(con->console, "type"); - if (!type || strcmp(type, "ioemu" != 0)) { + if (!type || strcmp(type, "ioemu") != 0) { xen_be_printf(xendev, 1, "not for me (type=%s)\n", type); return -1; } |