From 5bece30eb3e0f286296d9a29d4d08cbc7425ce3d Mon Sep 17 00:00:00 2001 From: wangjianyu3 Date: Thu, 4 Dec 2025 12:30:59 +0800 Subject: [PATCH] system/nxinit: Fix timespec incomplete error in action.h /.../apps/system/nxinit/action.h:72:19: error: field 'time_run' has incomplete type 72 | struct timespec time_run; | ^~~~~~~~ Signed-off-by: wangjianyu3 --- system/nxinit/action.c | 1 - system/nxinit/action.h | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/system/nxinit/action.c b/system/nxinit/action.c index b677e6760..0975682b7 100644 --- a/system/nxinit/action.c +++ b/system/nxinit/action.c @@ -29,7 +29,6 @@ #include #include #include -#include #include #include #include diff --git a/system/nxinit/action.h b/system/nxinit/action.h index 672621d13..908b907b4 100644 --- a/system/nxinit/action.h +++ b/system/nxinit/action.h @@ -29,6 +29,8 @@ #include +#include + #include "parser.h" /****************************************************************************