mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 22:48:34 +00:00
refactor: remove redundant casts
This commit is contained in:
@@ -622,7 +622,7 @@ void ex_history(exarg_T *eap)
|
||||
}
|
||||
histype1 = get_histtype(arg, (size_t)(end - arg), false);
|
||||
if (histype1 == HIST_INVALID) {
|
||||
if (STRNICMP(arg, "all", end - (char *)arg) == 0) {
|
||||
if (STRNICMP(arg, "all", end - arg) == 0) {
|
||||
histype1 = 0;
|
||||
histype2 = HIST_COUNT - 1;
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user