aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/undo.c
diff options
context:
space:
mode:
authorMichaHoffmann <michoffmann.potsdam@gmail.com>2018-09-24 22:05:01 +0200
committerMichaHoffmann <michoffmann.potsdam@gmail.com>2018-09-24 22:05:01 +0200
commit8cb04c2230f64e90de68250f822c511b4b137462 (patch)
tree4c20fa3381860a5c2387bda0c366ebdfb3404dc1 /src/nvim/undo.c
parent50c22325df3457e5ddb73337806b4e1365c019b5 (diff)
downloadrneovim-8cb04c2230f64e90de68250f822c511b4b137462.tar.gz
rneovim-8cb04c2230f64e90de68250f822c511b4b137462.tar.bz2
rneovim-8cb04c2230f64e90de68250f822c511b4b137462.zip
fixed lint errors
Diffstat (limited to 'src/nvim/undo.c')
-rw-r--r--src/nvim/undo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c
index 7e9141edda..1e6be5d824 100644
--- a/src/nvim/undo.c
+++ b/src/nvim/undo.c
@@ -2504,7 +2504,7 @@ void ex_undolist(exarg_T *eap)
if (uhp->uh_prev.ptr == NULL && uhp->uh_walk != nomark
&& uhp->uh_walk != mark) {
vim_snprintf((char *)IObuff, IOSIZE, "%6ld %7d ",
- uhp->uh_seq, changes);
+ uhp->uh_seq, changes);
u_add_time(IObuff + STRLEN(IObuff), IOSIZE - STRLEN(IObuff),
uhp->uh_time);
if (uhp->uh_save_nr > 0) {