X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Finterfaces%2Fvmm_host_hypercall.c;h=614ea30fbea3d94471b9da38e68ca330db1132cc;hb=92494646e1553eed626597050e1395371a3f9b34;hp=a05318470dd2a0c38acb8c7f65d004fe8e761d35;hpb=ef99d19f9ee3ff28d07f83c240a557938b3ab0d5;p=palacios.git diff --git a/palacios/src/interfaces/vmm_host_hypercall.c b/palacios/src/interfaces/vmm_host_hypercall.c index a053184..614ea30 100644 --- a/palacios/src/interfaces/vmm_host_hypercall.c +++ b/palacios/src/interfaces/vmm_host_hypercall.c @@ -142,7 +142,7 @@ int v3_register_host_hypercall(host_vm_info_t * vm, struct bounce_data *b = V3_Malloc(sizeof(struct bounce_data)); if (!b) { - PrintError("Unable to allocate in registering host hypercall\n"); + PrintError((struct v3_vm_info*)vm, VCORE_NONE, "Unable to allocate in registering host hypercall\n"); return -1; } @@ -153,7 +153,7 @@ int v3_register_host_hypercall(host_vm_info_t * vm, hypercall_id, bounce, b) < 0) { - PrintError("Cannot register host hypercall\n"); + PrintError((struct v3_vm_info*)vm, VCORE_NONE, "Cannot register host hypercall\n"); V3_Free(b); return -1; }