]> xenbits.xensource.com Git - people/dariof/xen.git/commitdiff
tools/misc: fix hard tabs in xen-hvmctx.c
authorPaul Durrant <paul.durrant@citrix.com>
Wed, 7 Nov 2018 10:52:22 +0000 (10:52 +0000)
committerWei Liu <wei.liu2@citrix.com>
Wed, 7 Nov 2018 13:08:16 +0000 (13:08 +0000)
Also add emacs boilerplate to avoid future problems.

Purely cosmetic. No functional change.

Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
tools/misc/xen-hvmctx.c

index 40e77851bed39c9425b95b6c2ea6e819932cc7f4..823aa7d7368de5273f9f7d0dd3bbf4341443e399 100644 (file)
@@ -371,8 +371,8 @@ static void dump_viridian_vcpu(void)
     HVM_SAVE_TYPE(VIRIDIAN_VCPU) p;
     READ(p);
     printf("    VIRIDIAN_VCPU: vp_assist_msr 0x%llx, vp_assist_pending %s\n",
-          (unsigned long long) p.vp_assist_msr,
-          p.vp_assist_pending ? "true" : "false");
+           (unsigned long long) p.vp_assist_msr,
+           p.vp_assist_pending ? "true" : "false");
 }
 
 static void dump_vmce_vcpu(void)
@@ -468,4 +468,14 @@ int main(int argc, char **argv)
     } while ( desc.typecode != HVM_SAVE_CODE(END) && off < len );
 
     return 0;
-} 
+}
+
+/*
+ * Local variables:
+ * mode: C
+ * c-file-style: "BSD"
+ * c-basic-offset: 4
+ * tab-width: 4
+ * indent-tabs-mode: nil
+ * End:
+ */