Since return is inconsistent, I removed unnecessary parentheses and
[openssl.git] / crypto / bio / bss_log.c
index 963371ed256966082e4172da501a27b5fd7d948b..181ab9c58f7d0ef3bfeb688ec4bc7a812b4ff82a 100644 (file)
@@ -110,7 +110,7 @@ static int slg_new(BIO *bi)
     bi->num = 0;
     bi->ptr = NULL;
     xopenlog(bi, "application", LOG_DAEMON);
-    return (1);
+    return 1;
 }
 
 static int slg_free(BIO *a)
@@ -118,7 +118,7 @@ static int slg_free(BIO *a)
     if (a == NULL)
         return (0);
     xcloselog(a);
-    return (1);
+    return 1;
 }
 
 static int slg_write(BIO *b, const char *in, int inl)