From: Mark McLoughlin Date: Tue, 24 Feb 2009 14:52:33 +0000 (+0000) Subject: Fix a typo in hostdev docs X-Git-Tag: LIBVIRT_0_6_1~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14480f699d3d11c9ac35ae1d78722936ebf2904d;p=thirdparty%2Flibvirt.git Fix a typo in hostdev docs It's:
not:
bus='0x06' slot='0x02' function='0x0'
--- diff --git a/ChangeLog b/ChangeLog index 677c584b62..f06e987226 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Feb 24 14:51:32 GMT 2009 Mark McLoughlin + + * docs/formatdomain.html: fix a typo in hostdev docs + Sun Feb 22 11:18:20 GMT 2009 Mark McLoughlin * src/network_driver.c: networkEnableIpForwarding() now diff --git a/docs/formatdomain.html b/docs/formatdomain.html index 17384b337f..17dc0cd8e7 100644 --- a/docs/formatdomain.html +++ b/docs/formatdomain.html @@ -485,7 +485,7 @@ ... <hostdev mode='subsystem' type='pci'> <source> - <address>bus='0x06' slot='0x02' function='0x0'</address> + <address bus='0x06' slot='0x02' function='0x0'/> </source> </hostdev> ... diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index c1e6a168e6..ee32354cad 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -397,7 +397,7 @@ ... <hostdev mode='subsystem' type='pci'> <source> - <address>bus='0x06' slot='0x02' function='0x0'</address> + <address bus='0x06' slot='0x02' function='0x0'/> </source> </hostdev> ...