diff mbox series

[12/12] htm: Add newline to print_htm_address() for chtm

Message ID 20210802054112.461728-13-jniethe5@gmail.com
State Superseded
Headers show
Series P10 HTM Support | expand

Checks

Context Check Description
snowpatch_ozlabs/github-build fail build failed at step Build pdbg.
snowpatch_ozlabs/github-test fail pdbg failed at step Test pdbg.

Commit Message

Jordan Niethe Aug. 2, 2021, 5:41 a.m. UTC
For nhtm, print_htm_address() prints a newline so do the same for chtm.

Signed-off-by: Jordan Niethe <jniethe5@gmail.com>
---
 src/htm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/src/htm.c b/src/htm.c
index ba1175e110f3..b3b0e538f914 100644
--- a/src/htm.c
+++ b/src/htm.c
@@ -54,7 +54,7 @@  static inline void print_htm_address(enum htm_type type,
 {
 	if (type == HTM_CORE) {
 		printf("p%d:", pdbg_parent_index(target, "pib"));
-		printf("c%d:", pdbg_parent_index(target, "core"));
+		printf("c%d\n", pdbg_parent_index(target, "core"));
 	}
 	if (type == HTM_NEST) {
 		printf("p%d\n", pdbg_parent_index(target, "pib"));