Skip to content

Commit

Permalink
Fixed Hexadecimal Output
Browse files Browse the repository at this point in the history
  • Loading branch information
Astabol committed Dec 30, 2024
1 parent 5e500e2 commit b52c60b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quicreach.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ int QUIC_CALL main(int argc, char **argv) {

MsQuic = new (std::nothrow) MsQuicApi();
if (QUIC_FAILED(MsQuic->GetInitStatus())) {
std::cout << "MsQuicApi failed, 0x" << MsQuic->GetInitStatus() << std::endl;
std::cout << "MsQuicApi failed, 0x" << std::hex << MsQuic->GetInitStatus() << std::dec << std::endl;
return 1;
}

Expand Down

0 comments on commit b52c60b

Please sign in to comment.