diff options
Diffstat (limited to 'common/ft_build.c')
| -rw-r--r-- | common/ft_build.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/common/ft_build.c b/common/ft_build.c index b5a997c1b..f76c582fb 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;  	} |