mirror of
https://github.com/neovim/neovim.git
synced 2025-09-11 22:08:18 +00:00
Fix for pvs V782, pointer access to first element of array
This commit is contained in:
@@ -1696,7 +1696,7 @@ static void printdigraph(digr_T *dp)
|
||||
}
|
||||
}
|
||||
|
||||
p = buf;
|
||||
p = &buf[0];
|
||||
*p++ = dp->char1;
|
||||
*p++ = dp->char2;
|
||||
*p++ = ' ';
|
||||
|
Reference in New Issue
Block a user