mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 04:58:33 +00:00
refactor: remove redundant casts
This commit is contained in:
@@ -625,7 +625,7 @@ void ins_char_bytes(char_u *buf, size_t charlen)
|
||||
|
||||
// Copy bytes before the cursor.
|
||||
if (col > 0) {
|
||||
memmove(newp, oldp, (size_t)col);
|
||||
memmove(newp, oldp, col);
|
||||
}
|
||||
|
||||
// Copy bytes after the changed character(s).
|
||||
|
Reference in New Issue
Block a user