diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/vmpa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/vmpa.c b/src/arch/vmpa.c index 27262d1..f344101 100644 --- a/src/arch/vmpa.c +++ b/src/arch/vmpa.c @@ -422,7 +422,7 @@ static char *_phys_t_to_string(phys_t phys, MemoryDataSize msize, char buffer[VM switch (msize) { case MDS_8_BITS: - ret = snprintf(buffer, VMPA_MAX_LEN,"0x%02" PRIx64, phys); + ret = snprintf(buffer, VMPA_MAX_LEN, "0x%02" PRIx64, phys); break; case MDS_16_BITS: @@ -499,7 +499,7 @@ char *vmpa2_virt_to_string(const vmpa2t *addr, MemoryDataSize msize, char buffer switch (msize) { case MDS_8_BITS: - ret = snprintf(buffer, VMPA_MAX_LEN,"0x%02" PRIx64, addr->virtual); + ret = snprintf(buffer, VMPA_MAX_LEN, "0x%02" PRIx64, addr->virtual); break; case MDS_16_BITS: |