mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 23:06:14 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -3355,7 +3355,7 @@ static ShaDaReadResult msgpack_read_uint64(ShaDaReadDef *const sd_reader, const
|
||||
error_desc
|
||||
#define CHECK_KEY(key, \
|
||||
expected) ((key).via.str.size == (sizeof(expected) - 1) \
|
||||
&& STRNCMP((key).via.str.ptr, expected, (sizeof(expected) - 1)) == 0)
|
||||
&& strncmp((key).via.str.ptr, expected, (sizeof(expected) - 1)) == 0)
|
||||
#define CLEAR_GA_AND_ERROR_OUT(ga) \
|
||||
do { \
|
||||
ga_clear(&(ga)); \
|
||||
|
Reference in New Issue
Block a user