]> git.ipfire.org Git - thirdparty/libvirt.git/commit
Remove curly braces on all single-line conditional jumps in dispatcher
authorDaniel P. Berrange <berrange@redhat.com>
Wed, 13 Apr 2011 17:23:00 +0000 (18:23 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 18 Apr 2011 14:20:33 +0000 (15:20 +0100)
commit55c71a26afc0060c0794dc695f3558e3aa11f7e2
tree4dc803af5471c737749fff0f9464b2c1c1dff762
parentc19295e5aecd7ad6506ba4f8ea54d587e109cf6e
Remove curly braces on all single-line conditional jumps in dispatcher

Replace all occurrances of

   if (....) {
      goto cleanup;
   }

With

   if (.....)
      goto cleanup;

to save one line of code

* daemon/remote.c: Remove curly braces on single line conditionals
daemon/remote.c