8224742: JLONG_FORMAT_W incompatible with type jlong

Reviewed-by: thartmann, clanger
This commit is contained in:
Lutz Schmidt 2019-05-24 15:36:48 +02:00
parent deaba32229
commit 241c32ca51

View File

@ -250,7 +250,8 @@ inline int wcslen(const jchar* x) { return wcslen((const wchar_t*)x); }
#define offsetof(klass,field) offset_of(klass,field)
#if defined(_LP64) && defined(__APPLE__)
#define JLONG_FORMAT "%ld"
#define JLONG_FORMAT "%ld"
#define JLONG_FORMAT_W(width) "%" #width "ld"
#endif // _LP64 && __APPLE__
#ifndef USE_LIBRARY_BASED_TLS_ONLY