Skip to content

Commit

Permalink
Merge pull request FreeRDP#3658 from xhaakon/master
Browse files Browse the repository at this point in the history
Fix -Wundef with GCC 6.2.1 in wtypes.h
  • Loading branch information
bmiklautz authored Dec 19, 2016
2 parents 80bf3d6 + cc814ec commit 168aae6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions winpr/include/winpr/wtypes.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,15 @@ typedef unsigned long long __uint64;
#endif /* WINPR_HAVE_STDINT_H */

#ifdef WINPR_HAVE_STDINT_H
#if __ILP64__ || __LP64__
#if defined(__ILP64__) || defined(__LP64__)
#define __int3264 int64_t
#define __uint3264 uint64_t
#else
#define __int3264 int32_t
#define __uint3264 uint32_t
#endif
#else
#if __ILP64__ || __LP64__
#if defined(__ILP64__) || defined(__LP64__)
#define __int3264 __int64
#define __uint3264 __uint64
#else
Expand Down

0 comments on commit 168aae6

Please sign in to comment.