Fix a missing include 07/193907/1
authorMichal Bloch <m.bloch@samsung.com>
Mon, 26 Nov 2018 16:35:12 +0000 (17:35 +0100)
committerMichal Bloch <m.bloch@samsung.com>
Tue, 27 Nov 2018 09:33:16 +0000 (10:33 +0100)
`stddef.h` is needed for `size_t`, which is
one of the arguments to `__log_limiter_dump_rule`.

Change-Id: Iffbf5666dbfffe26ac1214e0068628ecfb5dd789
Signed-off-by: Michal Bloch <m.bloch@samsung.com>
include/loglimiter.h

index 1a290fc..3673663 100644 (file)
@@ -26,6 +26,8 @@
 extern "C" {
 #endif
 
+#include <stddef.h>
+
 #include <logconfig.h>
 
 struct rule;