From 2731080212fad1430becae0cb56fe33238e7e24a Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 25 Jul 2019 22:28:19 +0200 Subject: cleanup: remove mch_fopen in favor of os_fopen --- src/nvim/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/message.c') diff --git a/src/nvim/message.c b/src/nvim/message.c index df130565e0..12da48347e 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -2992,7 +2992,7 @@ int verbose_open(void) /* Only give the error message once. */ verbose_did_open = TRUE; - verbose_fd = mch_fopen((char *)p_vfile, "a"); + verbose_fd = os_fopen((char *)p_vfile, "a"); if (verbose_fd == NULL) { EMSG2(_(e_notopen), p_vfile); return FAIL; -- cgit