Commit 81d96482 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

cabinet: Remove unneeded casts.

parent 8090dbad
...@@ -403,11 +403,11 @@ typedef struct { ...@@ -403,11 +403,11 @@ typedef struct {
#define FDI_INT_MAGIC 0xfdfdfd05 #define FDI_INT_MAGIC 0xfdfdfd05
#define REALLY_IS_FCI(hfci) ( \ #define REALLY_IS_FCI(hfci) ( \
(((void *) hfci) != NULL) && \ ((hfci) != NULL) && \
(PFCI_INT(hfci)->FCI_Intmagic == FCI_INT_MAGIC) ) (PFCI_INT(hfci)->FCI_Intmagic == FCI_INT_MAGIC) )
#define REALLY_IS_FDI(hfdi) ( \ #define REALLY_IS_FDI(hfdi) ( \
(((void *) hfdi) != NULL) && \ ((hfdi) != NULL) && \
(PFDI_INT(hfdi)->FDI_Intmagic == FDI_INT_MAGIC) ) (PFDI_INT(hfdi)->FDI_Intmagic == FDI_INT_MAGIC) )
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment