From c33e1a367707f1c8a15dffcc5f89724b21c3dea7 Mon Sep 17 00:00:00 2001 From: Liam Girdwood Date: Sat, 14 Sep 2019 14:34:25 +0100 Subject: [PATCH] fuzzer: no need for extra new line. message already contains the newline. Signed-off-by: Liam Girdwood --- tools/fuzzer/topology.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fuzzer/topology.c b/tools/fuzzer/topology.c index cd06f2ff5..89cf4ce79 100644 --- a/tools/fuzzer/topology.c +++ b/tools/fuzzer/topology.c @@ -356,7 +356,7 @@ int parse_tplg(struct fuzz *fuzzer, char *tplg_filename) sprintf(message, "type: %x, size: 0x%x count: %d index: %d\n", hdr->type, hdr->payload_size, hdr->count, hdr->index); - fprintf(stdout, "debug %s\n", message); + fprintf(stdout, "debug %s", message); /* parse header and load the next block based on type */ switch (hdr->type) {