diff options
author | Mark McLoughlin <markmc@redhat.com> | 2009-09-23 11:24:05 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-25 19:57:51 +0000 |
commit | 3df04ac3c63ba6a0ff7417e0f7dd389bc3efb09d (patch) | |
tree | fddfd3db38eec559bedd3791344d662f3c7013c6 /qemu-config.c | |
parent | 9262f3841b0ecb866568e3edcc1fee1b05d41e9f (diff) |
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 <markmc@redhat.com>
Cc: Avi Kivity <avi@redhat.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'qemu-config.c')
-rw-r--r-- | qemu-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-config.c b/qemu-config.c index 39bf6a9826..555c7ba091 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -186,7 +186,7 @@ int qemu_set_option(const char *str) return -1; } - if (-1 == qemu_opt_set(opts, arg, str+offset+1)) { + if (qemu_opt_set(opts, arg, str+offset+1) == -1) { fprintf(stderr, "failed to set \"%s\" for %s \"%s\"\n", arg, lists[i]->name, id); return -1; |