Make the comment follow style(9) format.

Spotted by: jhb
This commit is contained in:
Ivan Voras 2010-03-03 13:29:39 +00:00
parent 7e4b1c0608
commit 90c1a580ee

View File

@ -65,9 +65,11 @@ extern int maxusers; /* system tune hint */
extern int ngroups_max; /* max # of supplemental groups */
extern int vm_guest; /* Running as virtual machine guest? */
/* Detected virtual machine guest types. The intention is to expand
/*
* Detected virtual machine guest types. The intention is to expand
* and/or add to the VM_GUEST_VM type if specific VM functionality is
* ever implemented (e.g. vendor-specific paravirtualization features). */
* ever implemented (e.g. vendor-specific paravirtualization features).
*/
enum VM_GUEST { VM_GUEST_NO = 0, VM_GUEST_VM, VM_GUEST_XEN };
#ifdef INVARIANTS /* The option is always available */