summaryrefslogtreecommitdiffstats
path: root/common/ft_build.c
diff options
context:
space:
mode:
authorWolfgang Denk <wd@nyx.denx.de>2006-10-11 14:15:21 +0200
committerWolfgang Denk <wd@nyx.denx.de>2006-10-11 14:15:21 +0200
commitfb883a521e04437acfe989de3e152b2e4866856b (patch)
tree0cf61f45ae693082b24ced9c1da9a87bdd0cabbd /common/ft_build.c
parent4a39616da41840bbc5b4c3f69df9861c2e6a8425 (diff)
parent2255b2d2044d434463eb2661e18018e50f1643d9 (diff)
downloadbarebox-fb883a521e04437acfe989de3e152b2e4866856b.tar.gz
barebox-fb883a521e04437acfe989de3e152b2e4866856b.tar.xz
Merge with /home/wd/git/u-boot/master
Diffstat (limited to 'common/ft_build.c')
-rw-r--r--common/ft_build.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/ft_build.c b/common/ft_build.c
index b5a997c1ba..f76c582fba 100644
--- a/common/ft_build.c
+++ b/common/ft_build.c
@@ -219,7 +219,9 @@ static void print_data(const void *data, int len)
return;
if (is_printable_string(data, len)) {
- printf(" = \"%s\"", (char *)data);
+ puts(" = \"");
+ puts(data);
+ puts("\"");
return;
}