hw/arm/smmuv3: Add space in guest error message
authorJean-Philippe Brucker <jean-philippe@linaro.org>
Wed, 27 Apr 2022 11:15:45 +0000 (12:15 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 28 Apr 2022 12:57:33 +0000 (13:57 +0100)
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>
hw/arm/smmuv3.c

index 8b1d8103dc8e13557eec5af0c6ea82a776ad89a3..3a989b09cb4b5ce27210961fb327f5a3a063513f 100644 (file)
@@ -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;