fuzzer: no need for extra new line.

message already contains the newline.

Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
This commit is contained in:
Liam Girdwood 2019-09-14 14:34:25 +01:00 committed by Liam Girdwood
parent 5dce3fb8fb
commit c33e1a3677
1 changed files with 1 additions and 1 deletions

View File

@ -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) {