Rémi Bernon : include: Fix DPFLTR_MASK value to 0x80000000.

Alexandre Julliard julliard at winehq.org
Fri Nov 20 14:54:32 CST 2020


Module: wine
Branch: master
Commit: 65af0b67024002f6fb3eb485a6775baf41db2050
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=65af0b67024002f6fb3eb485a6775baf41db2050

Author: Rémi Bernon <rbernon at codeweavers.com>
Date:   Thu Nov 19 10:25:20 2020 +0100

include: Fix DPFLTR_MASK value to 0x80000000.

This is most likely a typo from MSDN.

Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/dpfilter.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/dpfilter.h b/include/dpfilter.h
index 5b09dc9c23c..deb8db3fc41 100644
--- a/include/dpfilter.h
+++ b/include/dpfilter.h
@@ -23,7 +23,7 @@
 #define DPFLTR_WARNING_LEVEL    1
 #define DPFLTR_TRACE_LEVEL      2
 #define DPFLTR_INFO_LEVEL       3
-#define DPFLTR_MASK     0x8000000
+#define DPFLTR_MASK    0x80000000
 
 typedef enum _DPFLTR_TYPE
 {




More information about the wine-cvs mailing list