Skip to content
Snippets Groups Projects
Commit ddd5d9da authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Fix typo.

Patch by Andreas Engel, 28 Nov 2005
parent 80f0c0f5
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4: Changes since U-Boot 1.1.4:
====================================================================== ======================================================================
* Fix typo.
Patch by Andreas Engel, 28 Nov 2005
* Fix fatload command on FAT32 formatted partitions. * Fix fatload command on FAT32 formatted partitions.
Patch by Joachim Jaeger, 18 Nov 2005 Patch by Joachim Jaeger, 18 Nov 2005
......
...@@ -225,7 +225,7 @@ TftpHandler (uchar * pkt, unsigned dest, unsigned src, unsigned len) ...@@ -225,7 +225,7 @@ TftpHandler (uchar * pkt, unsigned dest, unsigned src, unsigned len)
if (TftpBlock == 0) { if (TftpBlock == 0) {
TftpBlockWrap++; TftpBlockWrap++;
TftpBlockWrapOffset += TFTP_BLOCK_SIZE * TFTP_SEQUENCE_SIZE; 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 { } else {
if (((TftpBlock - 1) % 10) == 0) { if (((TftpBlock - 1) % 10) == 0) {
putc ('#'); putc ('#');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment