diff options
Diffstat (limited to 'src/nvim/diff.c')
-rw-r--r-- | src/nvim/diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/diff.c b/src/nvim/diff.c index d4fbb290c1..b21bc1f2f4 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -867,7 +867,7 @@ void ex_diffpatch(exarg_T *eap) #ifdef UNIX // Get the absolute path of the patchfile, changing directory below. - fullname = FullName_save(eap->arg, FALSE); + fullname = (char_u *)FullName_save((char *)eap->arg, FALSE); #endif // ifdef UNIX #ifdef UNIX |