diff options
author | Zack Middleton <zturtleman@gmail.com> | 2014-12-28 14:58:46 -0600 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2015-03-17 11:39:03 +0000 |
commit | aeaff8c13765b96daae31311b2f3d3ade3087322 (patch) | |
tree | 4105f7b2c02bb8f16ab3d17cc9a1587fcec492e6 /src/client | |
parent | 0a911e53af8c56bf605f8fa1c165719441793048 (diff) |
Include stdint.h instead of inttypes.h in libmumblelink.c
MSVC 2010 has stdint.h but not inttypes.h.
Debian (GCC, MinGW) and OS X (Clang) can compile using stdint.h.
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/libmumblelink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/libmumblelink.c b/src/client/libmumblelink.c index ed4c2d52..05a24976 100644 --- a/src/client/libmumblelink.c +++ b/src/client/libmumblelink.c @@ -36,7 +36,7 @@ #endif #include <fcntl.h> -#include <inttypes.h> +#include <stdint.h> #include <stdlib.h> #include <string.h> #include <stdio.h> |