Use NULL to indicate we are returning a pointer rather than an integer and to eliminate some sparse warnings.
Signed-off-by: Cong WANG <[EMAIL PROTECTED]> --- --- drivers/kvm/vmx.c.orig 2007-03-11 21:41:03.000000000 +0800 +++ drivers/kvm/vmx.c 2007-03-12 14:25:11.000000000 +0800 @@ -98,7 +98,7 @@ static struct vmx_msr_entry *find_msr_en for (i = 0; i < vcpu->nmsrs; ++i) if (vcpu->guest_msrs[i].index == msr) return &vcpu->guest_msrs[i]; - return 0; + return NULL; } static void vmcs_clear(struct vmcs *vmcs) - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/