mirror of https://github.com/thesofproject/sof.git
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:
parent
5dce3fb8fb
commit
c33e1a3677
|
@ -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",
|
sprintf(message, "type: %x, size: 0x%x count: %d index: %d\n",
|
||||||
hdr->type, hdr->payload_size, hdr->count, hdr->index);
|
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 */
|
/* parse header and load the next block based on type */
|
||||||
switch (hdr->type) {
|
switch (hdr->type) {
|
||||||
|
|
Loading…
Reference in New Issue