From be16a7bbe35d5fc4c251ecebc2a04937af22a7c0 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 29 Mar 2022 12:29:13 +0100 Subject: [PATCH] testcrypt: remove a redundant typedef. All the TD_consumed_foo types are defined by macro elsewhere in the file, so there's no need for an explicit one for TD_consumed_val_hash. --- test/testcrypt.c | 1 - 1 file changed, 1 deletion(-) diff --git a/test/testcrypt.c b/test/testcrypt.c index 5e0b73db..01b5c501 100644 --- a/test/testcrypt.c +++ b/test/testcrypt.c @@ -211,7 +211,6 @@ typedef const char *TD_opt_val_string_asciz; typedef char **TD_out_val_string_asciz; typedef char **TD_out_opt_val_string_asciz; typedef const char **TD_out_opt_val_string_asciz_const; -typedef ssh_hash *TD_consumed_val_hash; typedef const ssh_hashalg *TD_hashalg; typedef const ssh2_macalg *TD_macalg; typedef const ssh_keyalg *TD_keyalg;