]> granicus.if.org Git - neomutt/commitdiff
Fix mutt_autocrypthdr_new return type
authorPietro Cerutti <gahr@gahr.ch>
Mon, 2 Sep 2019 09:41:24 +0000 (09:41 +0000)
committerPietro Cerutti <gahr@gahr.ch>
Mon, 2 Sep 2019 09:41:24 +0000 (09:41 +0000)
email/envelope.c

index 2d4a091fbd6ac8c2207ed7a25b375f9831b1ade2..3c7a3ea8eadb2f956183dc90103b27a7a1eec918 100644 (file)
@@ -62,7 +62,7 @@ struct Envelope *mutt_env_new(void)
  * mutt_autocrypthdr_new - Create a new AutocryptHeader
  * @retval ptr New AutocryptHeader
  */
-void mutt_autocrypthdr_new(void)
+struct AutocryptHeader *mutt_autocrypthdr_new(void)
 {
   return mutt_mem_calloc(1, sizeof(struct AutocryptHeader));
 }