diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-03-19 13:02:54 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-03-19 13:02:54 (GMT) |
commit | 94fd405bb0c2e6dfa43324b04a336ffb611c58ce (patch) | |
tree | f3170587b4006fa358665a6bbfa301731503d3b3 /src/arch | |
parent | 499f00977cd7f50ce0c4cf24dd59b1e920e5b180 (diff) |
Provided initial features for debugging using GDB.
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: |