From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joris OFFOUGA Date: Sat, 24 Aug 2019 10:50:12 +0200 Subject: [U-Boot] [PATCH 3/4] env: add missing header file In-Reply-To: <1566594199-25314-4-git-send-email-pjtexier@koncepto.io> References: <1566594199-25314-1-git-send-email-pjtexier@koncepto.io> <1566594199-25314-4-git-send-email-pjtexier@koncepto.io> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de Hi Pierre-Jean It's work on my side. Tested-by Joris Offouga Best Regards, Joris Offouga Le ven. 23 août 2019 à 23:05, Pierre-Jean Texier a écrit : > 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 > --- > include/env.h | 1 + > 1 file changed, 1 insertion(+) > > 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 > > -- > 2.7.4 > > _______________________________________________ > U-Boot mailing list > U-Boot at lists.denx.de > https://lists.denx.de/listinfo/u-boot >