]> git.ipfire.org Git - thirdparty/libvirt.git/commit
Remove all whitespace before function brackets in daemon dispatcher
authorDaniel P. Berrange <berrange@redhat.com>
Tue, 12 Apr 2011 16:34:30 +0000 (17:34 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Wed, 13 Apr 2011 18:00:21 +0000 (19:00 +0100)
commit80050484479e9053081665db2e86e8c7991cb0a5
tree31f91d64cc7c49d4349285df6193a6fa3cf93084
parent67eecd1610d9996cc7f776e0be12d70cec0fe258
Remove all whitespace before function brackets in daemon dispatcher

A lot of code in libvirtd's dispatcher used the style

    dom = get_nonnull_domain (conn, args->dom);

Instead of the normal libvirt style

    dom = get_nonnull_domain(conn, args->dom);

* daemon/remote.c: Remove all whitelist before function brackets
daemon/remote.c