aboutsummaryrefslogtreecommitdiff
path: root/src/dlog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dlog.c')
-rw-r--r--src/dlog.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dlog.c b/src/dlog.c
index 784c1f6a..4901c3d4 100644
--- a/src/dlog.c
+++ b/src/dlog.c
@@ -225,7 +225,11 @@ void dlog_flush_vm_buffer(ffa_id_t id, char buffer[], size_t length)
{
lock();
- print_raw_string("VM ");
+ if (ffa_is_vm_id(id)) {
+ print_raw_string("VM ");
+ } else {
+ print_raw_string("SP ");
+ }
print_num(id, 16, 0, 0);
print_raw_string(": ");