From 350c37c32ea38f073d330c1f1ca86dbc9e79a936 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 26 Nov 2006 03:19:06 +0000 Subject: *** empty log message *** --- coro.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coro.h') diff --git a/coro.h b/coro.h index 6a2b632..b74ee22 100644 --- a/coro.h +++ b/coro.h @@ -174,7 +174,7 @@ struct coro_context { #if CORO_LINUX # define coro_transfer(p,n) do { if (!_setjmp ((p)->env)) _longjmp ((n)->env, 1); } while(0) #else -# define coro_transfer(p,n) do { if (!setjmp ((p)->env)) longjmp ((n)->env, 1); } while(0) +# define coro_transfer(p,n) do { if (!setjmp ((p)->env)) longjmp ((n)->env, 1); } while(0) #endif #endif -- cgit v1.2.3