Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
egecetin committed Jan 4, 2025
1 parent 69b6123 commit 005bd84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Packet++/src/NtpLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ namespace pcpp
struct tm* timer = nullptr;
time_t const timeStruct = integerPart;
#if defined(_WIN32)
if (gmtime_s(&timer, &timeStruct))
if (gmtime_s(timer, &timeStruct))
{
timer = nullptr;
}
Expand Down

0 comments on commit 005bd84

Please sign in to comment.