summaryrefslogtreecommitdiff
path: root/coro.h
diff options
context:
space:
mode:
Diffstat (limited to 'coro.h')
-rw-r--r--coro.h2
1 files changed, 1 insertions, 1 deletions
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