aboutsummaryrefslogtreecommitdiff
path: root/src/quickfix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickfix.c')
-rw-r--r--src/quickfix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index fe0ef8ad6a..a480fe03ae 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -2509,7 +2509,7 @@ void ex_make(exarg_T *eap)
fname = get_mef_name();
if (fname == NULL)
return;
- mch_remove(fname); /* in case it's not unique */
+ os_remove((char *)fname); // in case it's not unique
/*
* If 'shellpipe' empty: don't redirect to 'errorfile'.
@@ -2554,7 +2554,7 @@ void ex_make(exarg_T *eap)
if (res > 0 && !eap->forceit)
qf_jump(qi, 0, 0, FALSE); /* display first error */
- mch_remove(fname);
+ os_remove((char *)fname);
vim_free(fname);
vim_free(cmd);
}