diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-05-28 13:03:00 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2024-05-28 13:06:35 +0200 |
commit | ff7f22c28b602c84350785624b4b6fc9ae35f950 (patch) | |
tree | b2adc04224a5454ba257bc334e83ed1a29552e61 /src/nvim/os | |
parent | 90a4b1a59cf0c204cb39ec7789ab8783626e449d (diff) | |
download | rneovim-ff7f22c28b602c84350785624b4b6fc9ae35f950.tar.gz rneovim-ff7f22c28b602c84350785624b4b6fc9ae35f950.tar.bz2 rneovim-ff7f22c28b602c84350785624b4b6fc9ae35f950.zip |
refactor(fileio): remove useless use of FileDescriptor
FileDescriptor is used to buffer togheter many small writes to fewer
syscalls. if the data to write already is in a single buffer, it is
perfectly fine to just use os_write directly (which will take care of
the reverse problem: splitting a too big write into many syscalls)
Diffstat (limited to 'src/nvim/os')
-rw-r--r-- | src/nvim/os/fileio.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/nvim/os/fileio.c b/src/nvim/os/fileio.c index da6fb13768..fbb2be5104 100644 --- a/src/nvim/os/fileio.c +++ b/src/nvim/os/fileio.c @@ -365,14 +365,3 @@ ptrdiff_t file_skip(FileDescriptor *const fp, const size_t size) return (ptrdiff_t)read_bytes; } - -/// Print error which occurs when failing to write msgpack data -/// -/// @param[in] error Error code of the error to print. -/// -/// @return -1 (error return for msgpack_packer callbacks). -int msgpack_file_write_error(const int error) -{ - semsg(_("E5420: Failed to write to file: %s"), os_strerror(error)); - return -1; -} |