Since return is inconsistent, I removed unnecessary parentheses and
[openssl.git] / crypto / x509 / x509_d2.c
index cb03dbfa6c8b9161a305868e469f0232b2175860..95d57bb732955c0ea584d72af5ab43aa2c35e24d 100644 (file)
@@ -29,7 +29,7 @@ int X509_STORE_set_default_paths(X509_STORE *ctx)
     /* clear any errors */
     ERR_clear_error();
 
-    return (1);
+    return 1;
 }
 
 int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
@@ -53,5 +53,5 @@ int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
     }
     if ((path == NULL) && (file == NULL))
         return (0);
-    return (1);
+    return 1;
 }