summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_txt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/x509/x509_txt.c')
-rw-r--r--src/lib/libcrypto/x509/x509_txt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_txt.c b/src/lib/libcrypto/x509/x509_txt.c
index c44f753c46..27f6c7176a 100644
--- a/src/lib/libcrypto/x509/x509_txt.c
+++ b/src/lib/libcrypto/x509/x509_txt.c
@@ -185,7 +185,7 @@ const char *X509_verify_cert_error_string(long n)
185 return("CRL path validation error"); 185 return("CRL path validation error");
186 186
187 default: 187 default:
188 BIO_snprintf(buf,sizeof buf,"error number %ld",n); 188 (void) snprintf(buf,sizeof buf,"error number %ld",n);
189 return(buf); 189 return(buf);
190 } 190 }
191 } 191 }