summaryrefslogtreecommitdiffstats
path: root/cpukit/posix
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-12-10 09:08:16 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-12-10 09:08:16 -0600
commit0f01de2b96c61a4b386c12056a0a1f8cc567ed9c (patch)
treeaa01cc1b2b99b0df491e3d9c2638421dcd880f2a /cpukit/posix
parentpsxtmtests: added psxtmcond07 test (diff)
downloadrtems-0f01de2b96c61a4b386c12056a0a1f8cc567ed9c.tar.bz2
alarm.c: Use _Assert() not assert()
Diffstat (limited to 'cpukit/posix')
-rw-r--r--cpukit/posix/src/alarm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/alarm.c b/cpukit/posix/src/alarm.c
index 8def4a0836..ffd6eeec1b 100644
--- a/cpukit/posix/src/alarm.c
+++ b/cpukit/posix/src/alarm.c
@@ -51,7 +51,7 @@ static void _POSIX_signals_Alarm_TSR(
* There is no reason to think this might fail but we should be
* cautious.
*/
- assert(status == 0);
+ _Assert(status == 0);
#endif
}