summaryrefslogtreecommitdiff
path: root/cpukit/include/rtems/score/objectimpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/score/objectimpl.h')
-rw-r--r--cpukit/include/rtems/score/objectimpl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/include/rtems/score/objectimpl.h b/cpukit/include/rtems/score/objectimpl.h
index 5ade0edc5a..c540f90166 100644
--- a/cpukit/include/rtems/score/objectimpl.h
+++ b/cpukit/include/rtems/score/objectimpl.h
@@ -933,8 +933,8 @@ RTEMS_INLINE_ROUTINE void _Objects_Free(
)
{
_Assert( _Objects_Allocator_is_owner() );
- _Assert( information->free != NULL );
- ( *information->free )( information, the_object );
+ _Assert( information->deallocate != NULL );
+ ( *information->deallocate )( information, the_object );
}
/**