mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 09:56:31 +00:00
refactor: the long goodbye
long is 32 bits on windows, while it is 64 bits on other architectures. This makes the type suboptimal for a codebase meant to be cross-platform. Replace it with more appropriate integer types.
This commit is contained in:
@@ -2288,7 +2288,7 @@ static void highlight_list_two(int cnt, int attr)
|
||||
msg_puts_attr(&("N \bI \b! \b"[cnt / 11]), attr);
|
||||
msg_clr_eos();
|
||||
ui_flush();
|
||||
os_delay(cnt == 99 ? 40L : (uint64_t)cnt * 50L, false);
|
||||
os_delay(cnt == 99 ? 40 : (uint64_t)cnt * 50, false);
|
||||
}
|
||||
|
||||
/// Function given to ExpandGeneric() to obtain the list of group names.
|
||||
|
Reference in New Issue
Block a user