From: Paul Durrant Date: Wed, 25 Nov 2020 19:55:46 +0000 (+0000) Subject: Fix typo in SharedInfoDebugCallback() X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=571fa424fa60c0a2274205590d815d96fbbea701;p=pvdrivers%2Fwin%2Fxenbus.git Fix typo in SharedInfoDebugCallback() A missing '%' in a format specifier means we don't get the correct information for the per-vcpu selector masks in the debug output. Signed-off-by: Paul Durrant --- diff --git a/src/xenbus/shared_info.c b/src/xenbus/shared_info.c index a95318c..aa97255 100644 --- a/src/xenbus/shared_info.c +++ b/src/xenbus/shared_info.c @@ -512,7 +512,7 @@ SharedInfoDebugCallback( XENBUS_DEBUG(Printf, &Context->DebugInterface, - "CPU %u:u: SELECTOR MASK: %p\n", + "CPU %u:%u: SELECTOR MASK: %p\n", ProcNumber.Group, ProcNumber.Number, (PVOID)Shared->vcpu_info[vcpu_id].evtchn_pending_sel);