summaryrefslogtreecommitdiffstats
path: root/commands/tftp.c
diff options
context:
space:
mode:
authorHubert Feurstein <h.feurstein@gmail.com>2013-04-02 10:07:07 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-04-03 17:22:11 +0200
commit50a9cadb0c4fba8406721f7ca6fda5886f7c466c (patch)
treefd5b754a9f78aa99590f31caa955d480e09a6c12 /commands/tftp.c
parent18196fcf5f32219f0ec40ede42aea7e142f526d3 (diff)
downloadbarebox-50a9cadb0c4fba8406721f7ca6fda5886f7c466c.tar.gz
barebox-50a9cadb0c4fba8406721f7ca6fda5886f7c466c.tar.xz
commands/tftp: use debug() for debug output
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/tftp.c')
-rw-r--r--commands/tftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/tftp.c b/commands/tftp.c
index 558b0ac816..c83d1740e2 100644
--- a/commands/tftp.c
+++ b/commands/tftp.c
@@ -76,7 +76,7 @@ static int do_tftpb(int argc, char *argv[])
if (ret)
goto err_rmdir;
- printk("%s: %s -> %s\n", __func__, source, dest);
+ debug("%s: %s -> %s\n", __func__, source, dest);
ret = copy_file(source, dest, 1);