From: Matt Caswell Date: Sat, 12 Dec 2015 14:26:22 +0000 (+0000) Subject: Fix compile failure with no-threads X-Git-Tag: OpenSSL_1_1_0-pre2~250 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7a93c858263ab0f2719da9c3bb4d0ba68afac79c;p=oweals%2Fopenssl.git Fix compile failure with no-threads The async code was causing a compile failure if no-threads was used. Reviewed-by: Kurt Roeckx --- 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