Skip to content

Commit

Permalink
IPC4: print leading zeros in UUID
Browse files Browse the repository at this point in the history
When printing a missing module UUID, include leading zeros for
easier matching.

Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
  • Loading branch information
lyakh committed Dec 13, 2023
1 parent da89572 commit 1e964c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ipc/ipc4/helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ const struct comp_driver *ipc4_get_drv(uint8_t *uuid)
}
}

tr_err(&comp_tr, "get_drv(): the provided UUID (%8x %8x %8x %8x) can't be found!",
tr_err(&comp_tr, "get_drv(): the provided UUID (%08x %08x %08x %08x) can't be found!",
*(uint32_t *)(&uuid[0]),
*(uint32_t *)(&uuid[4]),
*(uint32_t *)(&uuid[8]),
Expand Down

0 comments on commit 1e964c1

Please sign in to comment.