diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2007-11-17 11:31:10 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-11-18 01:29:38 +0100 | 
| commit | 079c2c4fa71c0d1ebef394508df9088df8a308d3 (patch) | |
| tree | f1d9999650c94b9bdeec8843383b3b49f7cd7a29 /net/tftp.c | |
| parent | 0b20335015945cc9aedf27356e51aa3a0b0cdc48 (diff) | |
| download | olio-uboot-2014.01-079c2c4fa71c0d1ebef394508df9088df8a308d3.tar.xz olio-uboot-2014.01-079c2c4fa71c0d1ebef394508df9088df8a308d3.zip | |
Fix warning differ in signedness in net/net.c and net/nfs.c
Diffstat (limited to 'net/tftp.c')
| -rw-r--r-- | net/tftp.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/net/tftp.c b/net/tftp.c index 5ee767646..8b95bcfec 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -15,7 +15,7 @@  #if defined(CONFIG_CMD_NET)  #define WELL_KNOWN_PORT	69		/* Well known TFTP port #		*/ -#define TIMEOUT		5		/* Seconds to timeout for a lost pkt	*/ +#define TIMEOUT		5UL		/* Seconds to timeout for a lost pkt	*/  #ifndef	CONFIG_NET_RETRY_COUNT  # define TIMEOUT_COUNT	10		/* # of timeouts before giving up  */  #else |