Make sure that there is one space between if and condition

This commit is contained in:
Gregory Nutt
2014-04-12 12:53:19 -06:00
parent dc0211b218
commit 303cc1902b
19 changed files with 97 additions and 82 deletions
+1 -1
View File
@@ -203,7 +203,7 @@ int elf_loadshdrs(FAR struct elf_loadinfo_s *loadinfo)
/* Get the total size of the section header table */
shdrsize = (size_t)loadinfo->ehdr.e_shentsize * (size_t)loadinfo->ehdr.e_shnum;
if(loadinfo->ehdr.e_shoff + shdrsize > loadinfo->filelen)
if (loadinfo->ehdr.e_shoff + shdrsize > loadinfo->filelen)
{
bdbg("Insufficent space in file for section header table\n");
return -ESPIPE;