From: Pierre-Jean Texier Date: Mon, 26 Aug 2019 11:06:17 +0000 (+0200) Subject: env: add missing header file X-Git-Tag: v2019.10~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=664689f1dcb178ccb36842d0564ea8a6e8a7e648;p=platform%2Fkernel%2Fu-boot.git env: add missing header file Since commit af95f20 ("env: Create a new file for environment functions"), a new header file exists. So, this commit add a missing header file. Fixes: include/env.h:158:1: error: unknown type name ‘ulong’; did you mean ‘long’? ulong env_get_ulong(const char *name, int base, ulong default_val); ^~~~~ long include/env.h:158:49: error: unknown type name ‘ulong’; did you mean ‘long’? ulong env_get_ulong(const char *name, int base, ulong default_val); Signed-off-by: Pierre-Jean Texier Tested-by: Joris Offouga Tested-by: Heiko Schocher Acked-by: Joe Hershberger --- diff --git a/include/env.h b/include/env.h index a74a261..b72239f 100644 --- a/include/env.h +++ b/include/env.h @@ -9,6 +9,7 @@ #ifndef __ENV_H #define __ENV_H +#include #include #include