mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
Fixing compiler warnings
This commit is contained in:
parent
c54c1e0dce
commit
fc6fcded07
2 changed files with 2 additions and 2 deletions
|
@ -2724,7 +2724,7 @@ void RemoteSerializer::InternalCommError(const char* msg)
|
|||
#ifdef DEBUG_COMMUNICATION
|
||||
DumpDebugData();
|
||||
#else
|
||||
internal_error(msg);
|
||||
internal_error("%s", msg);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -1354,7 +1354,7 @@ void NetSessions::Internal(const char* msg, const struct pcap_pkthdr* hdr,
|
|||
const u_char* pkt)
|
||||
{
|
||||
DumpPacket(hdr, pkt);
|
||||
internal_error(msg);
|
||||
internal_error("%s", msg);
|
||||
}
|
||||
|
||||
void NetSessions::Weird(const char* name,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue