diff options
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index ec95c74fef..60bd15701d 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -2537,7 +2537,7 @@ static char_u *get_mef_name(void) static int off = 0; if (*p_mef == NUL) { - name = vim_tempname('e'); + name = vim_tempname(); if (name == NULL) EMSG(_(e_notmp)); return name; |