Re #1519: Minor update on PJ_UINT64() macro for GCC compiler. "LLU" is not recognized by C preproc on mingw/msys.

git-svn-id: https://svn.pjsip.org/repos/pjproject/branches/projects/pjsua2@4654 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Nanang Izzuddin 2013-11-22 10:18:08 +00:00
parent 7ad605c32f
commit 20838ee07c
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@
#endif
#define PJ_INT64(val) val##LL
#define PJ_UINT64(val) val##LLU
#define PJ_UINT64(val) val##ULL
#define PJ_INT64_FMT "L"