]> Git Repo - qemu.git/commitdiff
target/arm: Add trailing '\n' to qemu_log() calls
authorPhilippe Mathieu-Daudé <[email protected]>
Fri, 8 Jun 2018 12:15:33 +0000 (13:15 +0100)
committerPeter Maydell <[email protected]>
Fri, 8 Jun 2018 12:15:33 +0000 (13:15 +0100)
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Message-id: 20180606152128[email protected]
Reviewed-by: Peter Maydell <[email protected]>
Signed-off-by: Peter Maydell <[email protected]>
target/arm/helper.c

index f75aa6e9ca164da41c1f35670dfa25275cd710fb..1248d84e6fad9d258ec5eaa4b71d029ed41d3f70 100644 (file)
@@ -4570,7 +4570,7 @@ void hw_breakpoint_update(ARMCPU *cpu, int n)
     case 4: /* unlinked address mismatch (reserved if AArch64) */
     case 5: /* linked address mismatch (reserved if AArch64) */
         qemu_log_mask(LOG_UNIMP,
-                      "arm: address mismatch breakpoint types not implemented");
+                      "arm: address mismatch breakpoint types not implemented\n");
         return;
     case 0: /* unlinked address match */
     case 1: /* linked address match */
@@ -4604,7 +4604,7 @@ void hw_breakpoint_update(ARMCPU *cpu, int n)
     case 8: /* unlinked VMID match (reserved if no EL2) */
     case 10: /* unlinked context ID and VMID match (reserved if no EL2) */
         qemu_log_mask(LOG_UNIMP,
-                      "arm: unlinked context breakpoint types not implemented");
+                      "arm: unlinked context breakpoint types not implemented\n");
         return;
     case 9: /* linked VMID match (reserved if no EL2) */
     case 11: /* linked context ID and VMID match (reserved if no EL2) */
This page took 0.061967 seconds and 4 git commands to generate.