libpkgconf: stdinc: fix SIZE_FMT_SPECIFIER on mingw

pull/144/head
William Pitcock 2017-09-22 23:58:40 -05:00
parent 420c62e10c
commit 24c1439d52
1 changed files with 2 additions and 2 deletions

View File

@ -32,9 +32,9 @@
# include <malloc.h>
# define PATH_DEV_NULL "nul"
# ifdef _WIN64
# define SIZE_FMT_SPECIFIER "%llu"
# define SIZE_FMT_SPECIFIER "%I64u"
# else
# define SIZE_FMT_SPECIFIER "%lu"
# define SIZE_FMT_SPECIFIER "%u"
# endif
# ifndef ssize_t
# ifndef __MINGW32__