]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix a "make syntax-check" failure.
authorJim Meyering <meyering@redhat.com>
Wed, 27 Feb 2008 14:40:19 +0000 (14:40 +0000)
committerJim Meyering <meyering@redhat.com>
Wed, 27 Feb 2008 14:40:19 +0000 (14:40 +0000)
* src/capabilities.c: Include <config.h> from the .c file,
* src/capabilities.h: ... not from the .h file.

ChangeLog
src/capabilities.c
src/capabilities.h

index 85d066d2961e65410c11b2e1e8d2b637584dc88b..2cce6880f0dddf42d60f3b52d156243b9fd1751e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Feb 27 15:39:10 CET 2008 Jim Meyering <meyering@redhat.com>
+
+       Fix a "make syntax-check" failure.
+       * src/capabilities.c: Include <config.h> from the .c file,
+       * src/capabilities.h: ... not from the .h file.
+
 Wed Feb 27 10:34:00 UTC 2008 Richard W.M. Jones <rjones@redhat.com>
 
        Fix typos (Atsushi SAKAI).
index 94f7d173aa1ebaf9791b649fc8ee65978599cd1f..263935cf501609b3384f7cea8d487511557183c0 100644 (file)
@@ -21,6 +21,8 @@
  * Author: Daniel P. Berrange <berrange@redhat.com>
  */
 
+#include <config.h>
+
 #include "capabilities.h"
 #include "buf.h"
 
@@ -30,7 +32,7 @@
  * @arch: host machine architecture
  * @offlineMigrate: non-zero if offline migration is available
  * @liveMigrate: non-zero if live migration is available
- * 
+ *
  * Allocate a new capabilities object
  */
 virCapsPtr
index 97bd06f2efd0e64708241b707f46093b1ed51bd7..b379e515d048926585534c6230a3555bc3b0de57 100644 (file)
@@ -24,9 +24,6 @@
 #ifndef __VIR_CAPABILITIES_H
 #define __VIR_CAPABILITIES_H
 
-#include <config.h>
-
-
 typedef struct _virCapsGuestFeature virCapsGuestFeature;
 typedef virCapsGuestFeature *virCapsGuestFeaturePtr;
 struct _virCapsGuestFeature {