summaryrefslogtreecommitdiffstats
path: root/crypto/async
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/async')
-rw-r--r--crypto/async/arch/async_win.c2
-rw-r--r--crypto/async/async.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/crypto/async/arch/async_win.c b/crypto/async/arch/async_win.c
index 37a3111052..077d56ced0 100644
--- a/crypto/async/arch/async_win.c
+++ b/crypto/async/arch/async_win.c
@@ -25,7 +25,7 @@ void async_local_cleanup(void)
async_ctx *ctx = async_get_ctx();
if (ctx != NULL) {
async_fibre *fibre = &ctx->dispatcher;
- if(fibre != NULL && fibre->fibre != NULL && fibre->converted) {
+ if (fibre != NULL && fibre->fibre != NULL && fibre->converted) {
ConvertFiberToThread();
fibre->fibre = NULL;
}
diff --git a/crypto/async/async.c b/crypto/async/async.c
index 965a1954f9..8c699af78e 100644
--- a/crypto/async/async.c
+++ b/crypto/async/async.c
@@ -396,7 +396,7 @@ ASYNC_JOB *ASYNC_get_current_job(void)
async_ctx *ctx;
ctx = async_get_ctx();
- if(ctx == NULL)
+ if (ctx == NULL)
return NULL;
return ctx->currjob;
@@ -428,6 +428,6 @@ void ASYNC_unblock_pause(void)
*/
return;
}
- if(ctx->blocked > 0)
+ if (ctx->blocked > 0)
ctx->blocked--;
}