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.
This commit is contained in:
Zack Middleton 2014-12-28 14:58:46 -06:00
parent 3cc16d6b92
commit 7de09c3490
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@
#endif
#include <fcntl.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>