Skip to content

Commit

Permalink
1.3 Fix MEL dump.
Browse files Browse the repository at this point in the history
Signed-off-by: Jiewen Yao <jiewen.yao@intel.com>
  • Loading branch information
jyao1 committed Nov 14, 2024
1 parent 1529291 commit 32414b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spdm_dump/spdm/spdm_dump_spdm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1867,7 +1867,7 @@ void dump_spdm_get_mel(const void *buffer, size_t buffer_size)
spdm_request = buffer;

if (!m_param_quite_mode) {
printf(", Offset=0x%08x, Length=0x%08x) ",
printf("(Offset=0x%08x, Length=0x%08x) ",
spdm_request->offset, spdm_request->length);
}

Expand Down Expand Up @@ -1901,7 +1901,7 @@ void dump_spdm_mel(const void *buffer, size_t buffer_size)
}

if (!m_param_quite_mode) {
printf(", PortLen=0x%08x, RemLen=0x%08x) ",
printf("(PortLen=0x%08x, RemLen=0x%08x) ",
spdm_response->portion_length,
spdm_response->remainder_length);
}
Expand Down

0 comments on commit 32414b6

Please sign in to comment.