reflock: use lowercase for hex digits consistently

This commit is contained in:
Bert Belder 2018-12-04 12:28:46 -08:00
parent 210f4f8fba
commit b55b10a934
No known key found for this signature in database
GPG Key ID: 7A77887B2E2ED461

View File

@ -13,7 +13,7 @@ static const long REFLOCK__REF = (long) 0x00000001;
static const long REFLOCK__REF_MASK = (long) 0x0fffffff;
static const long REFLOCK__DESTROY = (long) 0x10000000;
static const long REFLOCK__DESTROY_MASK = (long) 0xf0000000;
static const long REFLOCK__POISON = (long) 0x300DEAD0;
static const long REFLOCK__POISON = (long) 0x300dead0;
/* clang-format on */
static HANDLE reflock__keyed_event = NULL;