summaryrefslogtreecommitdiffstats
path: root/include/ulogd
diff options
context:
space:
mode:
authorEric Leblond <eric@regit.org>2014-01-25 11:46:14 +0100
committerEric Leblond <eric@regit.org>2014-01-25 19:16:21 +0100
commit05ef694c3e845a4c6babcaa59d3bf7a6f507866b (patch)
tree345fb9d441eff7bd3c72a9cc1b8c736f6a556623 /include/ulogd
parentefa4bdba6eb982fd44a9bceb2b560baa7a5ec857 (diff)
nacct: fix format warning
Some counter have been recently switch to u64. This has caused warnings relative to format string. This patch uses PRIu64 macro to fix these warnings.
Diffstat (limited to 'include/ulogd')
-rw-r--r--include/ulogd/ulogd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ulogd/ulogd.h b/include/ulogd/ulogd.h
index 90272eb..cc2f15c 100644
--- a/include/ulogd/ulogd.h
+++ b/include/ulogd/ulogd.h
@@ -17,6 +17,7 @@
#include <stdio.h>
#include <signal.h> /* need this because of extension-sighandler */
#include <sys/types.h>
+#include <inttypes.h>
#include <string.h>
#include <config.h>