From a7cfb4bda0a3f3cb2ccecbade43cd87d681dae4f Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 23 Dec 2016 13:54:11 +0100 Subject: score: Relax static assertions Only require that the Newlib defined structure is big enough. --- cpukit/score/src/futex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/src/futex.c') diff --git a/cpukit/score/src/futex.c b/cpukit/score/src/futex.c index f200895562..ea4cc89344 100644 --- a/cpukit/score/src/futex.c +++ b/cpukit/score/src/futex.c @@ -39,7 +39,7 @@ RTEMS_STATIC_ASSERT( ); RTEMS_STATIC_ASSERT( - sizeof( Futex_Control ) == sizeof( struct _Futex_Control ), + sizeof( Futex_Control ) <= sizeof( struct _Futex_Control ), FUTEX_CONTROL_SIZE ); -- cgit v1.2.3