mirror of
https://git.yoctoproject.org/poky
synced 2026-03-04 14:29:40 +01:00
include stdint.h since the test uses uintptr_t C99 type (From OE-Core rev: b0791cfeeed3d4346ea5c9285f09b0a532c58bf8) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
458 B
Diff
18 lines
458 B
Diff
include stdint.h for getting uintptr_t definition
|
|
|
|
fixes do_compile_ptest_base
|
|
tests/fanotify_mark.c:191:23: error: 'uintptr_t' undeclared (first use in this function); did you mean 'intptr_t'?
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
--- a/tests/fanotify_mark.c
|
|
+++ b/tests/fanotify_mark.c
|
|
@@ -18,6 +18,7 @@
|
|
|
|
# include <limits.h>
|
|
# include <stdio.h>
|
|
+# include <stdint.h>
|
|
# include <unistd.h>
|
|
# include <sys/fanotify.h>
|
|
|