summaryrefslogtreecommitdiffstats
path: root/net/tftp.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/tftp.c')
-rw-r--r--net/tftp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tftp.c b/net/tftp.c
index c761c21f7a..e690c39345 100644
--- a/net/tftp.c
+++ b/net/tftp.c
@@ -210,7 +210,7 @@ TftpHandler (uchar * pkt, unsigned dest, unsigned src, unsigned len)
printf ("\n\t %lu MB received\n\t ", TftpBlockWrapOffset>>20);
} else {
if (((TftpBlock - 1) % 10) == 0) {
- putc ('#');
+ putchar('#');
} else if ((TftpBlock % (10 * HASHES_PER_LINE)) == 0) {
puts ("\n\t ");
}
@@ -330,7 +330,7 @@ TftpStart (void)
print_IPaddr (NetOurGatewayIP) ;
}
}
- putc ('\n');
+ putchar('\n');
printf ("Filename '%s'.", tftp_filename);
@@ -339,7 +339,7 @@ TftpStart (void)
print_size (NetBootFileSize<<9, "");
}
- putc ('\n');
+ putchar('\n');
puts ("Loading: *\b");