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)
This commit is contained in:
Thiago de Arruda
2014-10-21 08:53:55 -03:00
parent cf9571b7b1
commit 79b7263f79
6 changed files with 61 additions and 60 deletions

View File

@@ -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);