summaryrefslogtreecommitdiff
path: root/external/libetonyek/0001-fix-windows-build.patch
blob: 30e6609fafee10c7779325900265b18dfea79c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From abde3dc1e9c56f7bf68c91279d80a350beb58784 Mon Sep 17 00:00:00 2001
From: David Tardon <dtardon@redhat.com>
Date: Wed, 30 Oct 2013 17:57:51 +0100
Subject: [PATCH] fix windows build

---
 src/lib/libetonyek_utils.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/libetonyek_utils.h b/src/lib/libetonyek_utils.h
index cd0d621..2b2bf48 100644
--- a/src/lib/libetonyek_utils.h
+++ b/src/lib/libetonyek_utils.h
@@ -24,11 +24,11 @@
 typedef unsigned char uint8_t;
 typedef unsigned short uint16_t;
 typedef unsigned uint32_t;
-typedef unsigned int64 uint64_t;
+typedef unsigned __int64 uint64_t;
 typedef signed char int8_t;
 typedef short int16_t;
 typedef int int32_t;
-typedef int64 int64_t;
+typedef __int64 int64_t;
 
 #else
 
-- 
1.8.3.1