aboutsummaryrefslogtreecommitdiffstats
path: root/etisnoop.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-09-02 16:22:43 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-09-02 16:22:43 +0200
commit8823ffb8e0cd34615f44e5d241030c57a7465153 (patch)
tree13c1258ce297fee16b5a96ca8b744faec9b1dddb /etisnoop.cpp
parent2316e62c612f42ea80f309b1a1c03103fc002707 (diff)
downloadetisnoop-8823ffb8e0cd34615f44e5d241030c57a7465153.tar.gz
etisnoop-8823ffb8e0cd34615f44e5d241030c57a7465153.tar.bz2
etisnoop-8823ffb8e0cd34615f44e5d241030c57a7465153.zip
Fix compilation issue on CentOS 7v1.0.0
Apparently PRId64 is not defined in inttypes.h
Diffstat (limited to 'etisnoop.cpp')
-rw-r--r--etisnoop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/etisnoop.cpp b/etisnoop.cpp
index 09d8001..ff0e61b 100644
--- a/etisnoop.cpp
+++ b/etisnoop.cpp
@@ -37,7 +37,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
-#include <inttypes.h>
+#include <cinttypes>
#include <string>
#include <vector>
#include <map>