aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2021-12-16 14:15:51 +0000
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-12-17 19:34:54 +0000
commit689976477a4e2742fe0d1cb7a3a07cafe09c1328 (patch)
tree8d5461687086b45784bb2f12576ecbfe7c8defec
parent271ab568b09b9b7cc3347ec135fb22e8c2c50027 (diff)
Add inttypes.h to wireshark.h
For convenience, having to add this header constantly is annoying and kind of pointless, now that we are relying more on stdio.h.
-rw-r--r--include/wireshark.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wireshark.h b/include/wireshark.h
index 69a2e3d558..7611d63ad7 100644
--- a/include/wireshark.h
+++ b/include/wireshark.h
@@ -28,7 +28,7 @@
*/
/* System headers.*/
-#include <stdint.h>
+#include <inttypes.h>
#include <stdbool.h>
#include <glib.h>