From aaeaa968e68b0dd7e7139db75ce54437e35e1a1e Mon Sep 17 00:00:00 2001 From: Joakim Gebart Date: Mon, 6 Jul 2015 17:50:36 +0200 Subject: [PATCH] sys/net/application_layer/ng_zep: Add missing inttypes.h includes --- sys/net/application_layer/ng_zep/ng_zep.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys/net/application_layer/ng_zep/ng_zep.c b/sys/net/application_layer/ng_zep/ng_zep.c index f313928912..4b3a887440 100644 --- a/sys/net/application_layer/ng_zep/ng_zep.c +++ b/sys/net/application_layer/ng_zep/ng_zep.c @@ -37,6 +37,11 @@ #define ENABLE_DEBUG (0) #include "debug.h" +#if ENABLE_DEBUG +/* For PRIu16 etc. */ +#include +#endif + #define _EVENT_RX_STARTED (1) #define _EVENT_RX_COMPLETE (2) #define _RX_BUF_SIZE (16U * sizeof(ng_pktsnip_t *))