diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-21 08:53:55 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-21 11:05:49 -0300 |
commit | 79b7263f793206167260fcbc99bd76f73bfeb2c7 (patch) | |
tree | b13a3d75b080cbb953b5c78c9b7d4777156d937b /src/nvim/msgpack_rpc/channel.c | |
parent | cf9571b7b144f37b61ceaf3b17e84806913fd969 (diff) | |
download | rneovim-79b7263f793206167260fcbc99bd76f73bfeb2c7.tar.gz rneovim-79b7263f793206167260fcbc99bd76f73bfeb2c7.tar.bz2 rneovim-79b7263f793206167260fcbc99bd76f73bfeb2c7.zip |
compilation: Add -Wconversion to more files and validate CONV_SOURCES
All files under the os, api and msgpack_rpc directories have -Wconversion
automatically applied. CONV_SOURCES is also checked for missing files(when
renaming, for example)
Diffstat (limited to 'src/nvim/msgpack_rpc/channel.c')
-rw-r--r-- | src/nvim/msgpack_rpc/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/msgpack_rpc/channel.c b/src/nvim/msgpack_rpc/channel.c index 6ddda10c5f..a1ab12f7c3 100644 --- a/src/nvim/msgpack_rpc/channel.c +++ b/src/nvim/msgpack_rpc/channel.c @@ -331,7 +331,7 @@ static void parse_msgpack(RStream *rstream, void *data, bool eof) goto end; } - uint32_t count = rstream_pending(rstream); + size_t count = rstream_pending(rstream); DLOG("Feeding the msgpack parser with %u bytes of data from RStream(%p)", count, rstream); |