From 6b6960713806ecf83a407a274ac1ef34fd0d0bcd Mon Sep 17 00:00:00 2001 From: wentasah Date: Thu, 5 Nov 2009 05:58:46 +0000 Subject: [PATCH] Fix for gcc-4.4 --- orte/liborte/ORTEMisc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/liborte/ORTEMisc.c b/orte/liborte/ORTEMisc.c index 80edbb7..36c0d3c 100644 --- a/orte/liborte/ORTEMisc.c +++ b/orte/liborte/ORTEMisc.c @@ -41,7 +41,7 @@ ORTESleepMs(unsigned int ms) { Sleep(ms); #elif defined CONFIG_ORTE_RTAI rt_sleep(nano2count(ms*1000000)); - #elif + #else #error "NOT DEFINED SLEEP FUNCTION!" #endif } -- 2.39.2