From: Wolfgang Denk Date: Mon, 14 Aug 2006 20:43:13 +0000 (+0200) Subject: Fix typo. X-Git-Tag: U-Boot-1_1_5~57^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ddd5d9daf07be16f4cf40e2dc760a5b67d01224f;p=u-boot Fix typo. Patch by Andreas Engel, 28 Nov 2005 --- diff --git a/CHANGELOG b/CHANGELOG index 6c8043ff7c..2ddc67d71a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,9 @@ Changes since U-Boot 1.1.4: ====================================================================== +* Fix typo. + Patch by Andreas Engel, 28 Nov 2005 + * Fix fatload command on FAT32 formatted partitions. Patch by Joachim Jaeger, 18 Nov 2005 diff --git a/net/tftp.c b/net/tftp.c index eca21d294e..f3a5471483 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -225,7 +225,7 @@ TftpHandler (uchar * pkt, unsigned dest, unsigned src, unsigned len) if (TftpBlock == 0) { TftpBlockWrap++; TftpBlockWrapOffset += TFTP_BLOCK_SIZE * TFTP_SEQUENCE_SIZE; - printf ("\n\t %lu MB reveived\n\t ", TftpBlockWrapOffset>>20); + printf ("\n\t %lu MB received\n\t ", TftpBlockWrapOffset>>20); } else { if (((TftpBlock - 1) % 10) == 0) { putc ('#');