From: Richard Russon Date: Wed, 25 Jul 2018 11:33:11 +0000 (+0100) Subject: drop void returns X-Git-Tag: 2019-10-25~732^2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a2610e2cb94768e597aca2b88a355a08cefd8da;p=neomutt drop void returns --- diff --git a/alias.c b/alias.c index aac05e8ff..d414584dd 100644 --- a/alias.c +++ b/alias.c @@ -512,7 +512,6 @@ retry_name: fseek_err: mutt_perror(_("Error seeking in alias file")); mutt_file_fclose(&rc); - return; } /** diff --git a/buffy.c b/buffy.c index e91d051dd..50294b746 100644 --- a/buffy.c +++ b/buffy.c @@ -585,7 +585,6 @@ void mutt_update_mailbox(struct Buffy *b) b->size = (off_t) sb.st_size; else b->size = 0; - return; } /** diff --git a/keymap.c b/keymap.c index 98997c31a..b4edbbcb6 100644 --- a/keymap.c +++ b/keymap.c @@ -1071,7 +1071,6 @@ void km_error_key(int menu) km_expand_key(buf, sizeof(buf), key); mutt_error(_("Key is not bound. Press '%s' for help."), buf); - return; } /** diff --git a/pager.c b/pager.c index d1c392c82..5113c2d81 100644 --- a/pager.c +++ b/pager.c @@ -488,8 +488,6 @@ static void cleanup_quote(struct QClass **quote_list) FREE(quote_list); *quote_list = ptr; } - - return; } /** diff --git a/pop/pop_lib.c b/pop/pop_lib.c index 989b868d1..4e8acf027 100644 --- a/pop/pop_lib.c +++ b/pop/pop_lib.c @@ -447,7 +447,6 @@ void pop_logout(struct Context *ctx) } pop_data->status = POP_DISCONNECTED; - return; } /**