]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commitdiff
conf: whitespace tweak
authorChen Fan <chen.fan.fnst@cn.fujitsu.com>
Wed, 25 Jun 2014 08:45:32 +0000 (16:45 +0800)
committerEric Blake <eblake@redhat.com>
Wed, 25 Jun 2014 18:43:22 +0000 (12:43 -0600)
Fix missing whitespace when parsing 'managed' attribute.

Signed-off-by: Chen Fan <chen.fan.fnst@cn.fujitsu.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
src/conf/domain_conf.c

index 02c394f60e29b10f3f3cdefa4bc32a6276777a61..b7aa4f5171a190944ec6a1bef6acb477c73883bb 100644 (file)
@@ -4261,7 +4261,7 @@ virDomainHostdevDefParseXMLSubsys(xmlNodePtr node,
      * element that might be (pure hostdev, or higher level device
      * (e.g. <interface>) with type='hostdev')
      */
-    if ((managed = virXMLPropString(node, "managed"))!= NULL) {
+    if ((managed = virXMLPropString(node, "managed")) != NULL) {
         if (STREQ(managed, "yes"))
             def->managed = true;
     }