summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-12-12 14:26:22 +0000
committerMatt Caswell <matt@openssl.org>2015-12-12 14:26:22 +0000
commit7a93c858263ab0f2719da9c3bb4d0ba68afac79c (patch)
tree1eb0c6d428388db691b0fdc7fc2e56babbe8b7eb
parent9391ba1b51fac77a1255f3d9a0d275e4cce9d543 (diff)
Fix compile failure with no-threads
The async code was causing a compile failure if no-threads was used. Reviewed-by: Kurt Roeckx <kurt@openssl.org>
-rw-r--r--crypto/async/arch/async_null.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/async/arch/async_null.h b/crypto/async/arch/async_null.h
index 684e373b48..72a888a89b 100644
--- a/crypto/async/arch/async_null.h
+++ b/crypto/async/arch/async_null.h
@@ -69,7 +69,7 @@ typedef struct async_fibre_st {
# define async_set_ctx(nctx) 0
# define async_get_ctx() ((async_ctx *)NULL)
# define async_fibre_swapcontext(o,n,r) 0
-# define async_fibre_makecontext(c)
+# define async_fibre_makecontext(c) 0
# define async_fibre_free(f)
# define async_fibre_init_dispatcher(f)
# define async_get_pool() NULL