]> git.proxmox.com Git - qemu.git/commit
balloon: Simplify code flow
authorAmit Shah <amit.shah@redhat.com>
Wed, 20 Jul 2011 07:44:12 +0000 (13:14 +0530)
committerAnthony Liguori <aliguori@us.ibm.com>
Thu, 4 Aug 2011 21:43:09 +0000 (16:43 -0500)
commit182b9203f8f17198b1f818c23d80a2c698f29fa5
treefcaa50ca2f97d9e8e678d6036813850317e5780d
parentb80bc1ddb2e5838f8bc86f7cc8a45d16c8d8dcba
balloon: Simplify code flow

Replace:
  if (foo) {
    ...
  } else {
    return 0;
  }

by

  if (!foo) {
    return 0;
  }
  ...

Signed-off-by: Amit Shah <amit.shah@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
balloon.c