diff options
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 ea8fea2f7..84d83ca97 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -178,7 +178,7 @@ TftpSend (void)  		pkt += 5 /*strlen("octet")*/ + 1;  		strcpy ((char *)pkt, "timeout");  		pkt += 7 /*strlen("timeout")*/ + 1; -		sprintf((char *)pkt, "%d", TIMEOUT); +		sprintf((char *)pkt, "%lu", TIMEOUT);  #ifdef ET_DEBUG  		printf("send option \"timeout %s\"\n", (char *)pkt);  #endif |