This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 789d3751adf69858535dfd66ad99f26a477fb960 Author: Alin Jerpelea <[email protected]> AuthorDate: Thu Feb 4 13:51:09 2021 +0100 binfmt: libnxflat: nxstyle error fix Fix nxstyle errors to pass CI Signed-off-by: Alin Jerpelea <[email protected]> --- binfmt/libnxflat/libnxflat.h | 6 ++++-- binfmt/libnxflat/libnxflat_addrenv.c | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/binfmt/libnxflat/libnxflat.h b/binfmt/libnxflat/libnxflat.h index 9e65f76..2ddffc3 100644 --- a/binfmt/libnxflat/libnxflat.h +++ b/binfmt/libnxflat/libnxflat.h @@ -73,7 +73,8 @@ * ****************************************************************************/ -int nxflat_addrenv_alloc(FAR struct nxflat_loadinfo_s *loadinfo, size_t envsize); +int nxflat_addrenv_alloc(FAR struct nxflat_loadinfo_s *loadinfo, + size_t envsize); /**************************************************************************** * Name: nxflat_addrenv_select @@ -97,7 +98,8 @@ int nxflat_addrenv_alloc(FAR struct nxflat_loadinfo_s *loadinfo, size_t envsize) * Name: nxflat_addrenv_restore * * Description: - * Restore the address environment before nxflat_addrenv_select() was called.. + * Restore the address environment before nxflat_addrenv_select() was + * called.. * * Input Parameters: * loadinfo - Load state information diff --git a/binfmt/libnxflat/libnxflat_addrenv.c b/binfmt/libnxflat/libnxflat_addrenv.c index 8f1ce53..7180a56 100644 --- a/binfmt/libnxflat/libnxflat_addrenv.c +++ b/binfmt/libnxflat/libnxflat_addrenv.c @@ -86,7 +86,8 @@ * ****************************************************************************/ -int nxflat_addrenv_alloc(FAR struct nxflat_loadinfo_s *loadinfo, size_t envsize) +int nxflat_addrenv_alloc(FAR struct nxflat_loadinfo_s *loadinfo, + size_t envsize) { FAR struct dspace_s *dspace; #ifdef CONFIG_ARCH_ADDRENV
