A few fixes for compilation errors due to recent address environment fixes

This commit is contained in:
Gregory Nutt
2014-08-22 15:55:00 -06:00
parent f7899c655a
commit e79d6e3c8b
7 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -208,7 +208,7 @@ int exec_module(FAR const struct binary_s *binp)
/* Assign the address environment to the new task group */
#ifdef CONFIG_ADDRENV
ret = up_addrenv_assign(binp->addrenv, tcb->group);
ret = up_addrenv_assign(binp->addrenv, tcb->cmn.group);
if (ret < 0)
{
err = -ret;