summaryrefslogtreecommitdiff
path: root/src/diff.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/diff.c')
-rw-r--r--src/diff.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/diff.c b/src/diff.c
index caee6e5a5..aec54c2b0 100644
--- a/src/diff.c
+++ b/src/diff.c
@@ -688,9 +688,9 @@ ex_diffupdate(eap)
return;
/* We need three temp file names. */
- tmp_orig = vim_tempname('o');
- tmp_new = vim_tempname('n');
- tmp_diff = vim_tempname('d');
+ tmp_orig = vim_tempname('o', TRUE);
+ tmp_new = vim_tempname('n', TRUE);
+ tmp_diff = vim_tempname('d', TRUE);
if (tmp_orig == NULL || tmp_new == NULL || tmp_diff == NULL)
goto theend;
@@ -920,8 +920,8 @@ ex_diffpatch(eap)
#endif
/* We need two temp file names. */
- tmp_orig = vim_tempname('o');
- tmp_new = vim_tempname('n');
+ tmp_orig = vim_tempname('o', FALSE);
+ tmp_new = vim_tempname('n', FALSE);
if (tmp_orig == NULL || tmp_new == NULL)
goto theend;