]> git.ipfire.org Git - thirdparty/libvirt.git/commit
node_device: avoid implicit int
authorEric Blake <eblake@redhat.com>
Thu, 7 Jul 2011 18:04:41 +0000 (12:04 -0600)
committerEric Blake <eblake@redhat.com>
Wed, 13 Jul 2011 23:05:10 +0000 (17:05 -0600)
commit52a12382b62f0cc629e1b9e666ffc8bfa41047f0
treed34c867588615bca0191e2ecae06bf7aa2807a17
parent0983905c5abb3fb31f5c43d082329eb8b020bd1d
node_device: avoid implicit int

'unsigned a' and 'unsigned int a' are synonyms, but we generally
always spell out the 'int' in that case.  Fixing this will avoid
a false positive in the next syntax-check commit.

* src/conf/node_device_conf.h (pci_config_address)
(_virNodeDevCapsDef): Prefer 'unsigned int' over 'unsigned'.
src/conf/node_device_conf.h