From d39b697d49b10b0eb0227003ec346ff8206286a2 Mon Sep 17 00:00:00 2001 From: Matt Moyer Date: Fri, 12 Feb 2016 09:01:12 -0600 Subject: [PATCH] Drop const from these these int parameters. --- tool/yubico-piv-tool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/yubico-piv-tool.c b/tool/yubico-piv-tool.c index 4917763..d8ce0b1 100644 --- a/tool/yubico-piv-tool.c +++ b/tool/yubico-piv-tool.c @@ -781,7 +781,7 @@ request_out: static bool selfsign_certificate(ykpiv_state *state, enum enum_key_format key_format, const char *input_file_name, const char *slot, char *subject, enum enum_hash hash, - const int serial, const int validDays, const char *output_file_name) { + int serial, int validDays, const char *output_file_name) { FILE *input_file = NULL; FILE *output_file = NULL; bool ret = false;