From c961c06bbe213139b817e495fdba0eb64d5353a1 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 7 Jan 2008 15:33:33 +0000 Subject: 2008-01-07 Joel Sherrill * score/inline/rtems/score/isr.inl: Fix spacing. * score/src/apimutexallocate.c: Fix spacing. * score/src/coremsgseize.c: Check for message pending instead of message pending count to avoid dead code from inlined chain routine. It checks if the chain is empty so is redundant to count == 0. --- cpukit/score/inline/rtems/score/isr.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/inline/rtems/score/isr.inl') diff --git a/cpukit/score/inline/rtems/score/isr.inl b/cpukit/score/inline/rtems/score/isr.inl index 74c0588619..4aff1b09e6 100644 --- a/cpukit/score/inline/rtems/score/isr.inl +++ b/cpukit/score/inline/rtems/score/isr.inl @@ -45,7 +45,7 @@ RTEMS_INLINE_ROUTINE boolean _ISR_Is_valid_user_handler ( void *handler ) { - return ( handler != NULL); + return (handler != NULL); } /**@}*/ -- cgit v1.2.3