Skip to content

Commit

Permalink
fixup! use underscore_case for C++ vars.
Browse files Browse the repository at this point in the history
Co-authored-by: Anna Henningsen <github@addaleax.net>
  • Loading branch information
mkrawczuk and addaleax authored Jun 23, 2020
1 parent 3911595 commit 4099126
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node_crypto.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1566,8 +1566,8 @@ void SecureContext::GetNumTickets(const FunctionCallbackInfo<Value>& args) {

CHECK_EQ(args.Length(), 0);

uint32_t numTickets = SSL_CTX_get_num_tickets(sc->ctx_.get());
args.GetReturnValue().Set(static_cast<uint32_t>(numTickets));
uint32_t num_tickets = SSL_CTX_get_num_tickets(sc->ctx_.get());
args.GetReturnValue().Set(num_tickets);
}


Expand Down

0 comments on commit 4099126

Please sign in to comment.