From 3df04ac3c63ba6a0ff7417e0f7dd389bc3efb09d Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Wed, 23 Sep 2009 11:24:05 +0100 Subject: Fix coding style issue Replace: if (-1 == foo()) with: if (foo() == -1) While this coding style is not in direct contravention of our currently ratified CODING_STYLE treaty, it could be argued that the Article 3 of the European Convention on Human Rights (prohibiting torture and "inhuman or degrading treatment") reads on the matter. [This commit message was brought to you without humour, as is evidenced by the absence of any emoticons] Signed-off-by: Mark McLoughlin Cc: Avi Kivity Cc: Gerd Hoffmann Signed-off-by: Blue Swirl --- hw/qdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw') diff --git a/hw/qdev.c b/hw/qdev.c index 43b1beb..a589d72 100644 --- a/hw/qdev.c +++ b/hw/qdev.c @@ -137,7 +137,7 @@ static int set_property(const char *name, const char *value, void *opaque) if (strcmp(name, "bus") == 0) return 0; - if (-1 == qdev_prop_parse(dev, name, value)) { + if (qdev_prop_parse(dev, name, value) == -1) { qemu_error("can't set property \"%s\" to \"%s\" for \"%s\"\n", name, value, dev->info->name); return -1; -- cgit v1.1