Index: /trunk/include/VBox/HostServices/DragAndDropSvc.h
===================================================================
--- /trunk/include/VBox/HostServices/DragAndDropSvc.h	(revision 52934)
+++ /trunk/include/VBox/HostServices/DragAndDropSvc.h	(revision 52935)
@@ -43,7 +43,7 @@
 #define DND_LINK_ACTION       RT_BIT_32(2)
 
-#define hasDnDCopyAction(a)   ((a) && DND_COPY_ACTION)
-#define hasDnDMoveAction(a)   ((a) && DND_MOVE_ACTION)
-#define hasDnDLinkAction(a)   ((a) && DND_LINK_ACTION)
+#define hasDnDCopyAction(a)   ((a) & DND_COPY_ACTION)
+#define hasDnDMoveAction(a)   ((a) & DND_MOVE_ACTION)
+#define hasDnDLinkAction(a)   ((a) & DND_LINK_ACTION)
 
 #define isDnDIgnoreAction(a)  ((a) == DND_IGNORE_ACTION)
