Sourceforge Patch #37: Missing semicolon

This commit is contained in:
Gregory Nutt 2014-04-16 09:43:34 -06:00
parent a049b6a4c7
commit 9d12aa82fe

View File

@ -115,7 +115,7 @@ bool arch_checkarch(FAR const Elf32_Ehdr *ehdr)
if ((ehdr->e_entry & 3) != 0)
{
bdbg("Entry point is not properly aligned: %08x\n", ehdr->e_entry);
return -ENOEXEC
return -ENOEXEC;
}
/* TODO: Check ABI here. */