summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Gouget <fgouget@codeweavers.com>2015-11-16 10:20:29 +0000
committerFrediano Ziglio <fziglio@redhat.com>2015-11-16 10:21:14 +0000
commitbd2bbe2fdd9f230fc6b8a75dec612626dcce71f7 (patch)
tree53c57db02e64b5363e68b195fc4f8ab94410b85d
parentdc169cea90ba379d93fbb9ed9e14c40c818305c6 (diff)
downloadspice-bd2bbe2fdd9f230fc6b8a75dec612626dcce71f7.tar.gz
spice-bd2bbe2fdd9f230fc6b8a75dec612626dcce71f7.tar.xz
spice-bd2bbe2fdd9f230fc6b8a75dec612626dcce71f7.zip
server: Include stdint.h for int64_t
This fixes a compilation error with gcc 4.4 on RHEL 6. Signed-off-by: Francois Gouget <fgouget@codeweavers.com> Acked-by: Fabiano FidĂȘncio <fidencio@redhat.com>
-rw-r--r--server/utils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/utils.h b/server/utils.h
index 1ebc32fc..cae03d43 100644
--- a/server/utils.h
+++ b/server/utils.h
@@ -19,6 +19,7 @@
# define UTILS_H_
#include <time.h>
+#include <stdint.h>
typedef int64_t red_time_t;