commit | e7f8aa1a8648ee140108fe5097173eba58784dc3 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Wed May 10 15:20:13 2017 -0400 |
committer | Tom Rini <trini@konsulko.com> | Fri May 12 08:37:38 2017 -0400 |
tree | 22fe449b773b0ba77f526ecb7050ddfef705fef1 | |
parent | c41284f8260e4eae91326b43024754d4fa72f285 [diff] |
cmd/io.c: Fix comparison of unsigned expression warning The function cmd_get_data_size() returns an int and not unsigned. So we should assign it to an int rather than unsigned so that we can later compare the return value. Reported by clang-3.8. Signed-off-by: Tom Rini <trini@konsulko.com>