commit | 980b14f174208022d56da9d53eae0bc2d59aaa2c | [log] [tgz] |
---|---|---|
author | Simon Kelley <simon@thekelleys.org.uk> | Thu Mar 05 18:01:48 2020 +0000 |
committer | Simon Kelley <simon@thekelleys.org.uk> | Thu Mar 05 18:01:48 2020 +0000 |
tree | 7e20a2562ee4db7780d9cea5f6d3fb496acee99a | |
parent | 1df73fe8313f806984b446f7751241eccc33a4ee [diff] [blame] |
Compiler warning.
diff --git a/src/tftp.c b/src/tftp.c index 4c18577..d6f3563 100644 --- a/src/tftp.c +++ b/src/tftp.c
@@ -611,7 +611,7 @@ { /* don't complain about timeout when we're awaiting the last ACK, some clients never send it */ - if (len == transfer->blocksize + 4) + if ((unsigned)len == transfer->blocksize + 4) endcon = 1; len = 0; }