blob: 4bfaee1dbe2e545632a24fa24194d9c2f4a10f21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- a/src/network_inspectors/packet_capture/packet_capture.h
+++ b/src/network_inspectors/packet_capture/packet_capture.h
@@ -20,9 +20,10 @@
#ifndef PACKET_CAPTURE_H
#define PACKET_CAPTURE_H
+#include <cstdint>
#include <string>
-void packet_capture_enable(const std::string&, const int16_t g = -1);
+void packet_capture_enable(const std::string&, const std::int16_t g = -1);
void packet_capture_disable();
#endif
|