Commit 96248fd89093579dd7257bda3357a28d3c848bba
1 parent
fc1f79f7
Fix typo, thanks to Andreas Faerber for spotting
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7235 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
hw/xen_console.c
... | ... | @@ -189,7 +189,7 @@ static int con_init(struct XenDevice *xendev) |
189 | 189 | free(dom); |
190 | 190 | |
191 | 191 | type = xenstore_read_str(con->console, "type"); |
192 | - if (!type || strcmp(type, "ioemu" != 0)) { | |
192 | + if (!type || strcmp(type, "ioemu") != 0) { | |
193 | 193 | xen_be_printf(xendev, 1, "not for me (type=%s)\n", type); |
194 | 194 | return -1; |
195 | 195 | } | ... | ... |