From e7e8f4b333af3412e260f5e41a34909bc3278b5e Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Fri, 7 Sep 2007 13:27:40 +0000 Subject: [PATCH] Fix another warning. --- apps/pkcs12.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/pkcs12.c b/apps/pkcs12.c index 9a7132088b..1a63bf2ea4 100644 --- a/apps/pkcs12.c +++ b/apps/pkcs12.c @@ -469,7 +469,7 @@ int MAIN(int argc, char **argv) X509_keyid_set1(ucert, NULL, 0); X509_alias_set1(ucert, NULL, 0); /* Remove from list */ - sk_X509_delete(certs, i); + (void)sk_X509_delete(certs, i); break; } } -- GitLab