[PATCH] kvm tools: correctly compare pointer with NULL instead of 0

From: Sasha Levin
Date: Thu Dec 20 2012 - 14:12:32 EST


Signed-off-by: Sasha Levin <sasha.levin@xxxxxxxxxx>
---
tools/kvm/hw/pci-shmem.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/kvm/hw/pci-shmem.c b/tools/kvm/hw/pci-shmem.c
index 00e5d93..ec3f771 100644
--- a/tools/kvm/hw/pci-shmem.c
+++ b/tools/kvm/hw/pci-shmem.c
@@ -356,7 +356,7 @@ int pci_shmem__init(struct kvm *kvm)
char *mem;
int r;

- if (shmem_region == 0)
+ if (shmem_region == NULL)
return 0;

/* Register good old INTx */
--
1.8.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/