mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 09:18:19 +00:00
API: Refactor: Change the integer type of remote objects to uint64_t
This commit is contained in:
@@ -19,7 +19,8 @@ Buffer window_get_buffer(Window window, Error *err)
|
||||
return 0;
|
||||
}
|
||||
|
||||
return win->w_buffer->b_fnum;
|
||||
assert(win->w_buffer->b_fnum >= 0);
|
||||
return (uint64_t)win->w_buffer->b_fnum;
|
||||
}
|
||||
|
||||
Position window_get_cursor(Window window, Error *err)
|
||||
|
Reference in New Issue
Block a user