[libvirt] [PATCH] util: Include stdint.h because of uint32_t

Michal Privoznik mprivozn at redhat.com
Thu Jan 26 18:18:06 UTC 2012


Some files are using uint32_t or int64_t without including
stdint.h which defines them. Fix this.
---
Pushing under trivial & build-breaker rules.

 src/util/virhash.h     |    2 ++
 src/util/virhashcode.h |    1 +
 src/util/virrandom.h   |    1 +
 3 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/util/virhash.h b/src/util/virhash.h
index 0170eaa..7acbcbd 100644
--- a/src/util/virhash.h
+++ b/src/util/virhash.h
@@ -13,6 +13,8 @@
 #ifndef __VIR_HASH_H__
 # define __VIR_HASH_H__
 
+# include <stdint.h>
+
 /*
  * The hash table.
  */
diff --git a/src/util/virhashcode.h b/src/util/virhashcode.h
index 867e04e..a38043e 100644
--- a/src/util/virhashcode.h
+++ b/src/util/virhashcode.h
@@ -29,6 +29,7 @@
 # define __VIR_HASH_CODE_H__
 
 # include "internal.h"
+# include <stdint.h>
 
 extern uint32_t virHashCodeGen(const void *key, size_t len, uint32_t seed);
 
diff --git a/src/util/virrandom.h b/src/util/virrandom.h
index eede373..e180a2f 100644
--- a/src/util/virrandom.h
+++ b/src/util/virrandom.h
@@ -23,6 +23,7 @@
 # define __VIR_RANDOM_H__
 
 # include "internal.h"
+# include <stdint.h>
 
 int virRandomInitialize(uint32_t seed) ATTRIBUTE_RETURN_CHECK;
 uint64_t virRandomBits(int nbits);
-- 
1.7.3.4




More information about the libvir-list mailing list