aboutsummaryrefslogtreecommitdiff
path: root/nuttx/sched/env_release.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/env_release.c')
-rw-r--r--nuttx/sched/env_release.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/env_release.c b/nuttx/sched/env_release.c
index 83e65dbb5..8bc8d2205 100644
--- a/nuttx/sched/env_release.c
+++ b/nuttx/sched/env_release.c
@@ -94,11 +94,11 @@ int env_release(FAR _TCB *ptcb)
{
/* Check the reference count on the environment structure */
- if ( envp->ev_crefs <= 1)
+ if (envp->ev_crefs <= 1)
{
/* Decrementing the reference count will destroy the environment */
- sched_free( envp ); /* plain free() should be fine here */
+ sched_free(envp);
}
else
{