Skip to content

Commit

Permalink
src: fix ETW_WRITE_EMPTY_EVENT macro
Browse files Browse the repository at this point in the history
A comment was written before the last line, hiding a check.
  • Loading branch information
targos committed Feb 12, 2021
1 parent 4d309cc commit d9eaeb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node_win32_etw_provider-inl.h
Expand Up @@ -115,8 +115,8 @@ extern int events_enabled;
DWORD status = event_write(node_provider, \
&eventDescriptor, \
0, \
NULL); // NOLINT (readability/null_usage) \
CHECK_EQ(status, ERROR_SUCCESS);
NULL); \
CHECK_EQ(status, ERROR_SUCCESS); // NOLINT (readability/null_usage)


void NODE_HTTP_SERVER_REQUEST(node_dtrace_http_server_request_t* req,
Expand Down

0 comments on commit d9eaeb7

Please sign in to comment.