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
This commit is contained in:
Daniel P. Berrange 2011-04-13 18:23:00 +01:00
parent c19295e5ae
commit 55c71a26af
1 changed files with 316 additions and 632 deletions

File diff suppressed because it is too large Load Diff