From 1518952330756db153df63e752c2964aab4aea7c Mon Sep 17 00:00:00 2001 From: Michel Pollet Date: Tue, 4 Mar 2014 08:51:15 +0000 Subject: [PATCH] test: Fix coroutine on old gcc Removed traling colon. Fix issue #34 Signed-off-by: Michel Pollet --- tests/atmega88_coroutine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/atmega88_coroutine.c b/tests/atmega88_coroutine.c index 559fcf8..4f9f760 100644 --- a/tests/atmega88_coroutine.c +++ b/tests/atmega88_coroutine.c @@ -57,7 +57,7 @@ static inline void _set_stack(register void * stack) "out __SP_H__, %B0" "\n\t" "out __SREG__, r0" "\n\t" "out __SP_L__, %A0" "\n\t" - : : "e" (stack) : + : : "e" (stack) /* : */ ); } -- 2.39.5