src: reformat with clang-format 8.0

This commit is contained in:
Bert Belder 2019-05-17 12:39:54 -07:00
parent 65b4e44abd
commit 4727adafb7
No known key found for this signature in database
GPG Key ID: 7A77887B2E2ED461

View File

@ -19,8 +19,8 @@ static const long REFLOCK__POISON = (long) 0x300dead0;
static HANDLE reflock__keyed_event = NULL;
int reflock_global_init(void) {
NTSTATUS status =
NtCreateKeyedEvent(&reflock__keyed_event, KEYEDEVENT_ALL_ACCESS, NULL, 0);
NTSTATUS status = NtCreateKeyedEvent(
&reflock__keyed_event, KEYEDEVENT_ALL_ACCESS, NULL, 0);
if (status != STATUS_SUCCESS)
return_set_error(-1, RtlNtStatusToDosError(status));
return 0;