diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-11-22 23:12:30 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-11-22 23:12:30 +0100 |
commit | 8c959be51104fbf2aa01aa09f82df6cec515770c (patch) | |
tree | 045eab5e6aa1819c1ab13fcf1967c4a59cb82870 /src/nvim/digraph.c | |
parent | a4f6cec7a31ff8dbfa089b9e22227afbeb951e9b (diff) | |
parent | fe2546c81a8a7c0be5bbf0737d1169f6cd49bba0 (diff) | |
download | rneovim-8c959be51104fbf2aa01aa09f82df6cec515770c.tar.gz rneovim-8c959be51104fbf2aa01aa09f82df6cec515770c.tar.bz2 rneovim-8c959be51104fbf2aa01aa09f82df6cec515770c.zip |
Merge #7593 'PVS static analysis fixes'
Diffstat (limited to 'src/nvim/digraph.c')
-rw-r--r-- | src/nvim/digraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/digraph.c b/src/nvim/digraph.c index bfb1b94738..dbcc8db109 100644 --- a/src/nvim/digraph.c +++ b/src/nvim/digraph.c @@ -1696,7 +1696,7 @@ static void printdigraph(digr_T *dp) } } - p = buf; + p = &buf[0]; *p++ = dp->char1; *p++ = dp->char2; *p++ = ' '; |