From 81d964824b46deb525c8fc7fc11bb93d084708e7 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Thu, 6 Dec 2007 20:58:36 +0000 Subject: [PATCH] cabinet: Remove unneeded casts. --- dlls/cabinet/cabinet.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/cabinet/cabinet.h b/dlls/cabinet/cabinet.h index f566124c173..e786c1feb0f 100644 --- a/dlls/cabinet/cabinet.h +++ b/dlls/cabinet/cabinet.h @@ -403,11 +403,11 @@ typedef struct { #define FDI_INT_MAGIC 0xfdfdfd05 #define REALLY_IS_FCI(hfci) ( \ - (((void *) hfci) != NULL) && \ + ((hfci) != NULL) && \ (PFCI_INT(hfci)->FCI_Intmagic == FCI_INT_MAGIC) ) #define REALLY_IS_FDI(hfdi) ( \ - (((void *) hfdi) != NULL) && \ + ((hfdi) != NULL) && \ (PFDI_INT(hfdi)->FDI_Intmagic == FDI_INT_MAGIC) ) /*