summaryrefslogtreecommitdiffstats
path: root/src/util/crypto/nss/nss_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/crypto/nss/nss_util.c')
-rw-r--r--src/util/crypto/nss/nss_util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/crypto/nss/nss_util.c b/src/util/crypto/nss/nss_util.c
index 9a272ca92..e93bf206d 100644
--- a/src/util/crypto/nss/nss_util.c
+++ b/src/util/crypto/nss/nss_util.c
@@ -46,8 +46,8 @@ int nspr_nss_init(void)
sret = NSS_NoDB_Init(NULL);
if (sret != SECSuccess) {
- DEBUG(1, ("Error initializing connection to NSS [%d]\n",
- PR_GetError()));
+ DEBUG(1, "Error initializing connection to NSS [%d]\n",
+ PR_GetError());
return EIO;
}
@@ -64,8 +64,8 @@ int nspr_nss_cleanup(void)
sret = NSS_Shutdown();
if (sret != SECSuccess) {
- DEBUG(1, ("Error shutting down connection to NSS [%d]\n",
- PR_GetError()));
+ DEBUG(1, "Error shutting down connection to NSS [%d]\n",
+ PR_GetError());
return EIO;
}