Fix some style issues
[openssl.git] / crypto / async / arch / async_posix.c
index 814930f7bb56425712719eff5834754847fde895..78bf61c44ef25adb8f14e707d00b6c56c9af427e 100644 (file)
@@ -76,7 +76,8 @@ int async_fibre_init(async_fibre *fibre)
 {
     void *stack = NULL;
 
-    if (!(stack = OPENSSL_malloc(STACKSIZE))) {
+    stack = OPENSSL_malloc(STACKSIZE);
+    if (stack == NULL) {
         return 0;
     }