summaryrefslogtreecommitdiffstats
path: root/hw/arm/smmuv3.c
diff options
context:
space:
mode:
authorJean-Philippe Brucker2022-04-27 13:15:45 +0200
committerPeter Maydell2022-04-28 14:57:33 +0200
commit264a3b2eba3381980d17f23a7374edac691fd39a (patch)
treed7619b2c043f3e734c7a9c25dba9a7a5786677e2 /hw/arm/smmuv3.c
parenthw/arm/smmuv3: Cache event fault record (diff)
downloadqemu-264a3b2eba3381980d17f23a7374edac691fd39a.tar.gz
qemu-264a3b2eba3381980d17f23a7374edac691fd39a.tar.xz
qemu-264a3b2eba3381980d17f23a7374edac691fd39a.zip
hw/arm/smmuv3: Add space in guest error message
Make the translation error message prettier by adding a missing space before the parenthesis. Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Eric Auger <eric.auger@redhat.com> Message-id: 20220427111543.124620-2-jean-philippe@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/smmuv3.c')
-rw-r--r--hw/arm/smmuv3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/smmuv3.c b/hw/arm/smmuv3.c
index 8b1d8103dc..3a989b09cb 100644
--- a/hw/arm/smmuv3.c
+++ b/hw/arm/smmuv3.c
@@ -786,7 +786,7 @@ epilogue:
break;
case SMMU_TRANS_ERROR:
qemu_log_mask(LOG_GUEST_ERROR,
- "%s translation failed for iova=0x%"PRIx64"(%s)\n",
+ "%s translation failed for iova=0x%"PRIx64" (%s)\n",
mr->parent_obj.name, addr, smmu_event_string(event.type));
smmuv3_record_event(s, &event);
break;