[libvirt] [PATCH 4/7] Don't leave empty first line in C source files

Martin Kletzander mkletzan at redhat.com
Mon Mar 17 14:39:43 UTC 2014


If there should be some sort of separator it is better to use comment
with the filename, copyright, description, license information and
authors.

Found by:

git grep -nH '^$' | grep '\.[ch]:1:'

Signed-off-by: Martin Kletzander <mkletzan at redhat.com>
---

Notes:
    If any reviewer wants I can add a syntax-check for that.

 src/esx/esx_device_monitor.c         | 1 -
 src/esx/esx_device_monitor.h         | 1 -
 src/esx/esx_driver.c                 | 1 -
 src/esx/esx_driver.h                 | 1 -
 src/esx/esx_interface_driver.c       | 1 -
 src/esx/esx_interface_driver.h       | 1 -
 src/esx/esx_network_driver.c         | 1 -
 src/esx/esx_network_driver.h         | 1 -
 src/esx/esx_nwfilter_driver.c        | 1 -
 src/esx/esx_nwfilter_driver.h        | 1 -
 src/esx/esx_private.h                | 1 -
 src/esx/esx_secret_driver.c          | 1 -
 src/esx/esx_secret_driver.h          | 1 -
 src/esx/esx_storage_backend_iscsi.c  | 1 -
 src/esx/esx_storage_backend_iscsi.h  | 1 -
 src/esx/esx_storage_backend_vmfs.c   | 1 -
 src/esx/esx_storage_backend_vmfs.h   | 1 -
 src/esx/esx_storage_driver.c         | 1 -
 src/esx/esx_storage_driver.h         | 1 -
 src/esx/esx_util.c                   | 1 -
 src/esx/esx_vi.c                     | 1 -
 src/esx/esx_vi.h                     | 1 -
 src/esx/esx_vi_methods.c             | 1 -
 src/esx/esx_vi_methods.h             | 1 -
 src/esx/esx_vi_types.c               | 1 -
 src/esx/esx_vi_types.h               | 1 -
 src/hyperv/hyperv_device_monitor.c   | 1 -
 src/hyperv/hyperv_device_monitor.h   | 1 -
 src/hyperv/hyperv_driver.c           | 1 -
 src/hyperv/hyperv_driver.h           | 1 -
 src/hyperv/hyperv_interface_driver.c | 1 -
 src/hyperv/hyperv_interface_driver.h | 1 -
 src/hyperv/hyperv_network_driver.c   | 1 -
 src/hyperv/hyperv_network_driver.h   | 1 -
 src/hyperv/hyperv_nwfilter_driver.c  | 1 -
 src/hyperv/hyperv_nwfilter_driver.h  | 1 -
 src/hyperv/hyperv_private.h          | 1 -
 src/hyperv/hyperv_secret_driver.c    | 1 -
 src/hyperv/hyperv_secret_driver.h    | 1 -
 src/hyperv/hyperv_storage_driver.c   | 1 -
 src/hyperv/hyperv_storage_driver.h   | 1 -
 src/hyperv/hyperv_util.c             | 1 -
 src/hyperv/hyperv_util.h             | 1 -
 src/hyperv/hyperv_wmi.c              | 1 -
 src/hyperv/hyperv_wmi.h              | 1 -
 src/hyperv/hyperv_wmi_classes.c      | 1 -
 src/hyperv/hyperv_wmi_classes.h      | 1 -
 src/hyperv/openwsman.h               | 1 -
 src/qemu/qemu_migration.c            | 1 -
 src/security/virt-aa-helper.c        | 1 -
 src/vbox/vbox_MSCOMGlue.c            | 1 -
 src/vbox/vbox_MSCOMGlue.h            | 1 -
 src/vbox/vbox_glue.c                 | 1 -
 src/vbox/vbox_glue.h                 | 1 -
 src/vmx/vmx.h                        | 1 -
 tests/testutilslxc.h                 | 1 -
 tests/testutilsxen.h                 | 1 -
 tests/xml2sexprtest.c                | 1 -
 58 files changed, 58 deletions(-)

diff --git a/src/esx/esx_device_monitor.c b/src/esx/esx_device_monitor.c
index 7dc0618..11b61c9 100644
--- a/src/esx/esx_device_monitor.c
+++ b/src/esx/esx_device_monitor.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_device_monitor.c: device monitor functions for managing VMware ESX
  *                       host devices
diff --git a/src/esx/esx_device_monitor.h b/src/esx/esx_device_monitor.h
index a1efdcb..1b2795e 100644
--- a/src/esx/esx_device_monitor.h
+++ b/src/esx/esx_device_monitor.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_device_monitor.h: device monitor methods for managing VMware ESX
  *                       host devices
diff --git a/src/esx/esx_driver.c b/src/esx/esx_driver.c
index 6a2efe3..2512a6e 100644
--- a/src/esx/esx_driver.c
+++ b/src/esx/esx_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_driver.c: core driver functions for managing VMware ESX hosts
  *
diff --git a/src/esx/esx_driver.h b/src/esx/esx_driver.h
index 9df348d..0de6a64 100644
--- a/src/esx/esx_driver.h
+++ b/src/esx/esx_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_driver.h: core driver functions for managing VMware ESX hosts
  *
diff --git a/src/esx/esx_interface_driver.c b/src/esx/esx_interface_driver.c
index dcb9f03..193565e 100644
--- a/src/esx/esx_interface_driver.c
+++ b/src/esx/esx_interface_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_interface_driver.c: interface driver functions for managing VMware ESX
  *                         host interfaces
diff --git a/src/esx/esx_interface_driver.h b/src/esx/esx_interface_driver.h
index 8cacc44..cf0c4bd 100644
--- a/src/esx/esx_interface_driver.h
+++ b/src/esx/esx_interface_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_interface_driver.h: interface driver functions for managing VMware ESX
  *                         host interfaces
diff --git a/src/esx/esx_network_driver.c b/src/esx/esx_network_driver.c
index c8b53b1..4449ced 100644
--- a/src/esx/esx_network_driver.c
+++ b/src/esx/esx_network_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_network_driver.c: network driver functions for managing VMware ESX
  *                       host networks
diff --git a/src/esx/esx_network_driver.h b/src/esx/esx_network_driver.h
index 69fb48a..7a8a225 100644
--- a/src/esx/esx_network_driver.h
+++ b/src/esx/esx_network_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_network_driver.h: network driver functions for managing VMware ESX
  *                       host networks
diff --git a/src/esx/esx_nwfilter_driver.c b/src/esx/esx_nwfilter_driver.c
index 3b932de..b764e2d 100644
--- a/src/esx/esx_nwfilter_driver.c
+++ b/src/esx/esx_nwfilter_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_nwfilter_driver.c: nwfilter driver functions for managing VMware ESX
  *                        firewall rules
diff --git a/src/esx/esx_nwfilter_driver.h b/src/esx/esx_nwfilter_driver.h
index a53aba3..4fa88c3 100644
--- a/src/esx/esx_nwfilter_driver.h
+++ b/src/esx/esx_nwfilter_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_nwfilter_driver.h: nwfilter driver functions for managing VMware ESX
  *                        firewall rules
diff --git a/src/esx/esx_private.h b/src/esx/esx_private.h
index 83e945f..05ee1d6 100644
--- a/src/esx/esx_private.h
+++ b/src/esx/esx_private.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_private.h: private driver struct for the VMware ESX driver
  *
diff --git a/src/esx/esx_secret_driver.c b/src/esx/esx_secret_driver.c
index 5607a2e..3275369 100644
--- a/src/esx/esx_secret_driver.c
+++ b/src/esx/esx_secret_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_secret_driver.c: secret driver functions for VMware ESX secret manipulation
  *
diff --git a/src/esx/esx_secret_driver.h b/src/esx/esx_secret_driver.h
index 7434c3f..07f8b13 100644
--- a/src/esx/esx_secret_driver.h
+++ b/src/esx/esx_secret_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_secret_driver.h: secret driver functions for VMware ESX secret manipulation
  *
diff --git a/src/esx/esx_storage_backend_iscsi.c b/src/esx/esx_storage_backend_iscsi.c
index 66b91d1..b7287fb 100644
--- a/src/esx/esx_storage_backend_iscsi.c
+++ b/src/esx/esx_storage_backend_iscsi.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_storage_backend_iscsi.c: ESX storage backend for iSCSI handling
  *
diff --git a/src/esx/esx_storage_backend_iscsi.h b/src/esx/esx_storage_backend_iscsi.h
index 00c9e29..da461c1 100644
--- a/src/esx/esx_storage_backend_iscsi.h
+++ b/src/esx/esx_storage_backend_iscsi.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_storage_backend_iscsi.h: ESX storage backend for iSCSI handling
  *
diff --git a/src/esx/esx_storage_backend_vmfs.c b/src/esx/esx_storage_backend_vmfs.c
index f4a5d50..64b93f7 100644
--- a/src/esx/esx_storage_backend_vmfs.c
+++ b/src/esx/esx_storage_backend_vmfs.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_storage_backend_vmfs.c: ESX storage driver backend for
  *                             managing VMFS datastores
diff --git a/src/esx/esx_storage_backend_vmfs.h b/src/esx/esx_storage_backend_vmfs.h
index 9071642..4dad9bc 100644
--- a/src/esx/esx_storage_backend_vmfs.h
+++ b/src/esx/esx_storage_backend_vmfs.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_storage_backend_vmfs.h: ESX storage driver backend for
  *                             managing VMFS datastores
diff --git a/src/esx/esx_storage_driver.c b/src/esx/esx_storage_driver.c
index 926c5f2..6353dfc 100644
--- a/src/esx/esx_storage_driver.c
+++ b/src/esx/esx_storage_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_storage_driver.c: storage driver functions for managing VMware ESX
  *                       host storage
diff --git a/src/esx/esx_storage_driver.h b/src/esx/esx_storage_driver.h
index eab0c6f..871e59c 100644
--- a/src/esx/esx_storage_driver.h
+++ b/src/esx/esx_storage_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_storage_driver.h: storage driver methods for managing VMware ESX
  *                       host storage
diff --git a/src/esx/esx_util.c b/src/esx/esx_util.c
index 39b7c0e..f4d1f94 100644
--- a/src/esx/esx_util.c
+++ b/src/esx/esx_util.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_util.c: utility functions for the VMware ESX driver
  *
diff --git a/src/esx/esx_vi.c b/src/esx/esx_vi.c
index 777ce30..e554b63 100644
--- a/src/esx/esx_vi.c
+++ b/src/esx/esx_vi.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_vi.c: client for the VMware VI API 2.5 to manage ESX hosts
  *
diff --git a/src/esx/esx_vi.h b/src/esx/esx_vi.h
index aeee953..7cc2f71 100644
--- a/src/esx/esx_vi.h
+++ b/src/esx/esx_vi.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_vi.h: client for the VMware VI API 2.5 to manage ESX hosts
  *
diff --git a/src/esx/esx_vi_methods.c b/src/esx/esx_vi_methods.c
index 519daf6..0a3b3dd 100644
--- a/src/esx/esx_vi_methods.c
+++ b/src/esx/esx_vi_methods.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_vi_methods.c: client for the VMware VI API 2.5 to manage ESX hosts
  *
diff --git a/src/esx/esx_vi_methods.h b/src/esx/esx_vi_methods.h
index 0b4131a..a68ff1b 100644
--- a/src/esx/esx_vi_methods.h
+++ b/src/esx/esx_vi_methods.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_vi_methods.h: client for the VMware VI API 2.5 to manage ESX hosts
  *
diff --git a/src/esx/esx_vi_types.c b/src/esx/esx_vi_types.c
index 2d6f8db..8eff66e 100644
--- a/src/esx/esx_vi_types.c
+++ b/src/esx/esx_vi_types.c
@@ -1,4 +1,3 @@
-
 /*
  * esx_vi_types.c: client for the VMware VI API 2.5 to manage ESX hosts
  *
diff --git a/src/esx/esx_vi_types.h b/src/esx/esx_vi_types.h
index 92dc16f..34901d7 100644
--- a/src/esx/esx_vi_types.h
+++ b/src/esx/esx_vi_types.h
@@ -1,4 +1,3 @@
-
 /*
  * esx_vi_types.h: client for the VMware VI API 2.5 to manage ESX hosts
  *
diff --git a/src/hyperv/hyperv_device_monitor.c b/src/hyperv/hyperv_device_monitor.c
index 83ea72a..413fa10 100644
--- a/src/hyperv/hyperv_device_monitor.c
+++ b/src/hyperv/hyperv_device_monitor.c
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_device_monitor.c: device monitor functions for managing
  *                          Microsoft Hyper-V host devices
diff --git a/src/hyperv/hyperv_device_monitor.h b/src/hyperv/hyperv_device_monitor.h
index 17a20cf..36459b6 100644
--- a/src/hyperv/hyperv_device_monitor.h
+++ b/src/hyperv/hyperv_device_monitor.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_device_monitor.h: device monitor functions for managing
  *                          Microsoft Hyper-V host devices
diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c
index 6680e66..b2c3675 100644
--- a/src/hyperv/hyperv_driver.c
+++ b/src/hyperv/hyperv_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_driver.c: core driver functions for managing Microsoft Hyper-V hosts
  *
diff --git a/src/hyperv/hyperv_driver.h b/src/hyperv/hyperv_driver.h
index 166cdce..e7c249a 100644
--- a/src/hyperv/hyperv_driver.h
+++ b/src/hyperv/hyperv_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_driver.h: core driver functions for managing Microsoft Hyper-V hosts
  *
diff --git a/src/hyperv/hyperv_interface_driver.c b/src/hyperv/hyperv_interface_driver.c
index 62123a4..fbdd1a6 100644
--- a/src/hyperv/hyperv_interface_driver.c
+++ b/src/hyperv/hyperv_interface_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_interface_driver.c: interface driver functions for managing
  *                            Microsoft Hyper-V host interfaces
diff --git a/src/hyperv/hyperv_interface_driver.h b/src/hyperv/hyperv_interface_driver.h
index 1012990..2ab0225 100644
--- a/src/hyperv/hyperv_interface_driver.h
+++ b/src/hyperv/hyperv_interface_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_interface_driver.h: interface driver functions for managing
  *                            Microsoft Hyper-V host interfaces
diff --git a/src/hyperv/hyperv_network_driver.c b/src/hyperv/hyperv_network_driver.c
index e23f53a..32f3d83 100644
--- a/src/hyperv/hyperv_network_driver.c
+++ b/src/hyperv/hyperv_network_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_network_driver.c: network driver functions for managing
  *                          Microsoft Hyper-V host networks
diff --git a/src/hyperv/hyperv_network_driver.h b/src/hyperv/hyperv_network_driver.h
index 047560e..231d94b 100644
--- a/src/hyperv/hyperv_network_driver.h
+++ b/src/hyperv/hyperv_network_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_network_driver.h: network driver functions for managing
  *                          Microsoft Hyper-V host networks
diff --git a/src/hyperv/hyperv_nwfilter_driver.c b/src/hyperv/hyperv_nwfilter_driver.c
index 0343238..b71c66c 100644
--- a/src/hyperv/hyperv_nwfilter_driver.c
+++ b/src/hyperv/hyperv_nwfilter_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_nwfilter_driver.c: nwfilter driver functions for managing
  *                           Microsoft Hyper-V firewall rules
diff --git a/src/hyperv/hyperv_nwfilter_driver.h b/src/hyperv/hyperv_nwfilter_driver.h
index 73dfedd..d5918cb 100644
--- a/src/hyperv/hyperv_nwfilter_driver.h
+++ b/src/hyperv/hyperv_nwfilter_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_nwfilter_driver.h: nwfilter driver functions for managing
  *                           Microsoft Hyper-V firewall rules
diff --git a/src/hyperv/hyperv_private.h b/src/hyperv/hyperv_private.h
index 9c9fd3e..574bb5f 100644
--- a/src/hyperv/hyperv_private.h
+++ b/src/hyperv/hyperv_private.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_private.h: private driver struct for the Microsoft Hyper-V driver
  *
diff --git a/src/hyperv/hyperv_secret_driver.c b/src/hyperv/hyperv_secret_driver.c
index 3f9f8f5..1c4aae6 100644
--- a/src/hyperv/hyperv_secret_driver.c
+++ b/src/hyperv/hyperv_secret_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_secret_driver.c: secret driver functions for Microsoft Hyper-V
  *                         secret manipulation
diff --git a/src/hyperv/hyperv_secret_driver.h b/src/hyperv/hyperv_secret_driver.h
index 8b990c0..40bb3ad 100644
--- a/src/hyperv/hyperv_secret_driver.h
+++ b/src/hyperv/hyperv_secret_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_secret_driver.h: secret driver functions for Microsoft Hyper-V
  *                         secret manipulation
diff --git a/src/hyperv/hyperv_storage_driver.c b/src/hyperv/hyperv_storage_driver.c
index 5acc4d8..81fa74a 100644
--- a/src/hyperv/hyperv_storage_driver.c
+++ b/src/hyperv/hyperv_storage_driver.c
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_storage_driver.c: storage driver functions for managing
  *                          Microsoft Hyper-V host storage
diff --git a/src/hyperv/hyperv_storage_driver.h b/src/hyperv/hyperv_storage_driver.h
index 34844d8..651fb51 100644
--- a/src/hyperv/hyperv_storage_driver.h
+++ b/src/hyperv/hyperv_storage_driver.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_storage_driver.h: storage driver methods for managing
  *                          Microsoft Hyper-V host storage
diff --git a/src/hyperv/hyperv_util.c b/src/hyperv/hyperv_util.c
index e14c634..95d0b79 100644
--- a/src/hyperv/hyperv_util.c
+++ b/src/hyperv/hyperv_util.c
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_util.c: utility functions for the Microsoft Hyper-V driver
  *
diff --git a/src/hyperv/hyperv_util.h b/src/hyperv/hyperv_util.h
index f8d6e55..ededa31 100644
--- a/src/hyperv/hyperv_util.h
+++ b/src/hyperv/hyperv_util.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_util.h: utility functions for the Microsoft Hyper-V driver
  *
diff --git a/src/hyperv/hyperv_wmi.c b/src/hyperv/hyperv_wmi.c
index a603bad..6fbe54d 100644
--- a/src/hyperv/hyperv_wmi.c
+++ b/src/hyperv/hyperv_wmi.c
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_wmi.c: general WMI over WSMAN related functions and structures for
  *               managing Microsoft Hyper-V hosts
diff --git a/src/hyperv/hyperv_wmi.h b/src/hyperv/hyperv_wmi.h
index 85a2bbc..5fbbbac 100644
--- a/src/hyperv/hyperv_wmi.h
+++ b/src/hyperv/hyperv_wmi.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_wmi.h: general WMI over WSMAN related functions and structures for
  *               managing Microsoft Hyper-V hosts
diff --git a/src/hyperv/hyperv_wmi_classes.c b/src/hyperv/hyperv_wmi_classes.c
index 5204238..00bee2e 100644
--- a/src/hyperv/hyperv_wmi_classes.c
+++ b/src/hyperv/hyperv_wmi_classes.c
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_wmi_classes.c: WMI classes for managing Microsoft Hyper-V hosts
  *
diff --git a/src/hyperv/hyperv_wmi_classes.h b/src/hyperv/hyperv_wmi_classes.h
index 4b6c745..ac7a3b8 100644
--- a/src/hyperv/hyperv_wmi_classes.h
+++ b/src/hyperv/hyperv_wmi_classes.h
@@ -1,4 +1,3 @@
-
 /*
  * hyperv_wmi_classes.h: WMI classes for managing Microsoft Hyper-V hosts
  *
diff --git a/src/hyperv/openwsman.h b/src/hyperv/openwsman.h
index a0ac7a5..f66ed86 100644
--- a/src/hyperv/openwsman.h
+++ b/src/hyperv/openwsman.h
@@ -1,4 +1,3 @@
-
 /*
  * openwsman.h: workarounds for bugs in openwsman
  *
diff --git a/src/qemu/qemu_migration.c b/src/qemu/qemu_migration.c
index 65996b8..5bd5b88 100644
--- a/src/qemu/qemu_migration.c
+++ b/src/qemu/qemu_migration.c
@@ -1,4 +1,3 @@
-
 /*
  * qemu_migration.c: QEMU migration handling
  *
diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c
index e7f1359..b786f58 100644
--- a/src/security/virt-aa-helper.c
+++ b/src/security/virt-aa-helper.c
@@ -1,4 +1,3 @@
-
 /*
  * virt-aa-helper: wrapper program used by AppArmor security driver.
  *
diff --git a/src/vbox/vbox_MSCOMGlue.c b/src/vbox/vbox_MSCOMGlue.c
index c87004a..fbf42d8 100644
--- a/src/vbox/vbox_MSCOMGlue.c
+++ b/src/vbox/vbox_MSCOMGlue.c
@@ -1,4 +1,3 @@
-
 /*
  * vbox_MSCOMGlue.c: glue to the MSCOM based VirtualBox API
  *
diff --git a/src/vbox/vbox_MSCOMGlue.h b/src/vbox/vbox_MSCOMGlue.h
index 0e573db..cdc38f8 100644
--- a/src/vbox/vbox_MSCOMGlue.h
+++ b/src/vbox/vbox_MSCOMGlue.h
@@ -1,4 +1,3 @@
-
 /*
  * vbox_MSCOMGlue.h: glue to the MSCOM based VirtualBox API
  *
diff --git a/src/vbox/vbox_glue.c b/src/vbox/vbox_glue.c
index 602d467..afd6af4 100644
--- a/src/vbox/vbox_glue.c
+++ b/src/vbox/vbox_glue.c
@@ -1,4 +1,3 @@
-
 /*
  * vbox_glue.c: glue to the VirtualBox API
  *
diff --git a/src/vbox/vbox_glue.h b/src/vbox/vbox_glue.h
index dcc2495..080479c 100644
--- a/src/vbox/vbox_glue.h
+++ b/src/vbox/vbox_glue.h
@@ -1,4 +1,3 @@
-
 /*
  * vbox_glue.h: glue to the VirtualBox API
  *
diff --git a/src/vmx/vmx.h b/src/vmx/vmx.h
index d07bba2..6a68c8b 100644
--- a/src/vmx/vmx.h
+++ b/src/vmx/vmx.h
@@ -1,4 +1,3 @@
-
 /*
  * vmx.h: VMware VMX parsing/formatting functions
  *
diff --git a/tests/testutilslxc.h b/tests/testutilslxc.h
index dbfe834..3f9a67b 100644
--- a/tests/testutilslxc.h
+++ b/tests/testutilslxc.h
@@ -1,4 +1,3 @@
-
 #include "capabilities.h"

 #define FAKEDEVDIR0 "/fakedevdir0/bla/fasl"
diff --git a/tests/testutilsxen.h b/tests/testutilsxen.h
index 7f27e22..54155e5 100644
--- a/tests/testutilsxen.h
+++ b/tests/testutilsxen.h
@@ -1,4 +1,3 @@
-
 #include "capabilities.h"

 virCapsPtr testXenCapsInit(void);
diff --git a/tests/xml2sexprtest.c b/tests/xml2sexprtest.c
index deb2fce..e2e7f3b 100644
--- a/tests/xml2sexprtest.c
+++ b/tests/xml2sexprtest.c
@@ -1,4 +1,3 @@
-
 #include <config.h>

 #include <stdio.h>
-- 
1.9.0




More information about the libvir-list mailing list