apps/system/symtab: Fix some typos; update .gitignore

This commit is contained in:
Gregory Nutt 2015-08-23 12:19:52 -06:00
parent c7d8ef0f7c
commit 73fc8b501e
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,4 @@
/symtab.inc
/Make.dep
/.depend
/.built

View File

@ -69,11 +69,11 @@ void symtab_initialize(void)
{
/* We set the symbol table indirectly through the boardctl() */
struct symtab_desc_s symdesc;
struct boardioc_symtab_s symdesc;
symdesc.symtab = g_symtab;
symdesc.nsymbols = NSYMBOLS;
(void)boardctl(BOARDIOC_SYMTAB, (uinptr_t)&symdesc);
(void)boardctl(BOARDIOC_SYMTAB, (uintptr_t)&symdesc);
}
#endif /* CONFIG_SYSTEM_SYMTAB */