From a69a853fdf1407b8e0c53f1fb63f2f0e1a71a9b2 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sun, 7 Apr 2019 15:56:07 -0700 Subject: [PATCH] Fix mutt_buffer_select_file() macro to call correct function. --- protos.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protos.h b/protos.h index 070d8180..74af0c6a 100644 --- a/protos.h +++ b/protos.h @@ -265,7 +265,7 @@ void mutt_score_message (CONTEXT *, HEADER *, int); void mutt_select_fcc (char *, size_t, HEADER *); #define mutt_select_file(A,B,C) _mutt_select_file(A,B,C,NULL,NULL) void _mutt_select_file (char *, size_t, int, char ***, int *); -#define mutt_buffer_select_file(A,B) _mutt_select_file(A,B,NULL,NULL) +#define mutt_buffer_select_file(A,B) _mutt_buffer_select_file(A,B,NULL,NULL) void _mutt_buffer_select_file (BUFFER *, int, char ***, int *); void mutt_message_hook (CONTEXT *, HEADER *, int); void _mutt_set_flag (CONTEXT *, HEADER *, int, int, int); -- 2.40.0