Remove empty lines with spaces found in the source code

This commit is contained in:
Alan Carvalho de Assis 2023-07-24 08:24:26 -03:00 committed by Xiang Xiao
parent ed4f651bbd
commit 35ec548033

View File

@ -234,7 +234,8 @@ static inline int modlib_loadfile(FAR struct mod_loadinfo_s *loadinfo)
pptr = &text; pptr = &text;
} }
*pptr = (FAR uint8_t *)_ALIGN_UP((uintptr_t)*pptr, shdr->sh_addralign); *pptr = (FAR uint8_t *)_ALIGN_UP((uintptr_t)*pptr,
shdr->sh_addralign);
/* SHT_NOBITS indicates that there is no data in the file for the /* SHT_NOBITS indicates that there is no data in the file for the
* section. * section.
@ -244,7 +245,8 @@ static inline int modlib_loadfile(FAR struct mod_loadinfo_s *loadinfo)
{ {
/* Read the section data from sh_offset to the memory region */ /* Read the section data from sh_offset to the memory region */
ret = modlib_read(loadinfo, *pptr, shdr->sh_size, shdr->sh_offset); ret = modlib_read(loadinfo, *pptr, shdr->sh_size,
shdr->sh_offset);
if (ret < 0) if (ret < 0)
{ {
berr("ERROR: Failed to read section %d: %d\n", i, ret); berr("ERROR: Failed to read section %d: %d\n", i, ret);