Skip to content

Commit

Permalink
Merge pull request mitre-cyber-academy#1 from TomBinford/patch-1
Browse files Browse the repository at this point in the history
Fix newlines in attestation output
  • Loading branch information
janisbent authored Jan 23, 2024
2 parents 42e9f99 + 4beda94 commit 9bed56a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application_processor/src/application_processor.c
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ int attest_component(uint32_t component_id) {
}

// Print out attestation data
print_info("C>0x%08x", component_id);
print_info("%s\n", receive_buffer);
print_info("C>0x%08x\n", component_id);
print_info("%s", receive_buffer);
return SUCCESS_RETURN;
}

Expand Down

0 comments on commit 9bed56a

Please sign in to comment.