aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_docmd.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-10-30 12:45:34 -0400
committerJustin M. Keyes <justinkz@gmail.com>2015-10-30 12:45:34 -0400
commitd1cfaa0a55412758259f65837f4ff595204acd37 (patch)
tree864943c778dc463d36c0e168d12225a2833eeece /src/nvim/ex_docmd.c
parent4abf108f4639af1c35bc0554a069d878a50fcea0 (diff)
parent10080366b8975e827b64fda49a9686117c8c8f44 (diff)
downloadrneovim-d1cfaa0a55412758259f65837f4ff595204acd37.tar.gz
rneovim-d1cfaa0a55412758259f65837f4ff595204acd37.tar.bz2
rneovim-d1cfaa0a55412758259f65837f4ff595204acd37.zip
Merge pull request #3553 from ZyX-I/fix-xdg-2
Some more fixes to XDG code
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r--src/nvim/ex_docmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c
index e160281145..70cf5fd029 100644
--- a/src/nvim/ex_docmd.c
+++ b/src/nvim/ex_docmd.c
@@ -7193,7 +7193,7 @@ static void ex_wundo(exarg_T *eap)
char_u hash[UNDO_HASH_SIZE];
u_compute_hash(hash);
- u_write_undo(eap->arg, eap->forceit, curbuf, hash);
+ u_write_undo((char *) eap->arg, eap->forceit, curbuf, hash);
}
static void ex_rundo(exarg_T *eap)
@@ -7201,7 +7201,7 @@ static void ex_rundo(exarg_T *eap)
char_u hash[UNDO_HASH_SIZE];
u_compute_hash(hash);
- u_read_undo(eap->arg, hash, NULL);
+ u_read_undo((char *) eap->arg, hash, NULL);
}
/*