]> xenbits.xensource.com Git - libvirt.git/commit
Fix gcc 4.6 warnings
authorChristophe Fergeau <cfergeau@redhat.com>
Thu, 14 Apr 2011 09:22:35 +0000 (11:22 +0200)
committerMatthias Bolte <matthias.bolte@googlemail.com>
Thu, 14 Apr 2011 17:09:12 +0000 (19:09 +0200)
commit454e50beeecb3a40ee4d71c9ce82d5a006ae0f8a
treefdd11f06fec7a138cb8cae0123be6fb0865de867
parent2ac455c4d26315736dd897748dd4c175ab7fd0b7
Fix gcc 4.6 warnings

gcc 4.6 warns when a variable is initialized but isn't used afterwards:

vmware/vmware_driver.c:449:18: warning: variable 'vmxPath' set but not used [-Wunused-but-set-variable]

This patch fixes these warnings. There are still 2 offending files:

- vbox_tmpl.c: the variable is used inside an #ifdef and is assigned several
  times outside of #ifdef. Fixing the warning would have required wrapping
  all the assignment inside #ifdef which hurts readability.

vbox/vbox_tmpl.c: In function 'vboxAttachDrives':
vbox/vbox_tmpl.c:3918:22: warning: variable 'accessMode' set but not used [-Wunused-but-set-variable]

- esx_vi_types.generated.c: the name implies it's generated code and I
  didn't want to dive into the code generator

esx/esx_vi_types.generated.c: In function 'esxVI_FileQueryFlags_Free':
esx/esx_vi_types.generated.c:1203:3: warning: variable 'item' set but not used [-Wunused-but-set-variable]
.mailmap
AUTHORS
src/nwfilter/nwfilter_ebiptables_driver.c
src/util/logging.c
src/vmware/vmware_driver.c