summaryrefslogtreecommitdiff
path: root/nuttx/binfmt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-22 15:55:00 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-22 15:55:00 -0600
commitb48799e786f21caa5a9fb24f2b4838d11e3a16be (patch)
treeb78729532381fb634f2b4d1054d003ad4c7080a7 /nuttx/binfmt
parent1ea606fbcf54f7bb8e3ce9e4c770ec960ee26474 (diff)
downloadpx4-nuttx-b48799e786f21caa5a9fb24f2b4838d11e3a16be.tar.gz
px4-nuttx-b48799e786f21caa5a9fb24f2b4838d11e3a16be.tar.bz2
px4-nuttx-b48799e786f21caa5a9fb24f2b4838d11e3a16be.zip
A few fixes for compilation errors due to recent address environment fixes
Diffstat (limited to 'nuttx/binfmt')
-rw-r--r--nuttx/binfmt/binfmt_execmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/binfmt/binfmt_execmodule.c b/nuttx/binfmt/binfmt_execmodule.c
index c765724bd..aff45d7ec 100644
--- a/nuttx/binfmt/binfmt_execmodule.c
+++ b/nuttx/binfmt/binfmt_execmodule.c
@@ -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;