Michael Stefaniuc : include: Drop unneeded l modifiers from numeric constants in rpcndr.h.

Alexandre Julliard julliard at winehq.org
Wed Nov 23 13:40:05 CST 2011


Module: wine
Branch: master
Commit: 517d9333d424ddd7d5697f8b6658ae39edc6daa3
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=517d9333d424ddd7d5697f8b6658ae39edc6daa3

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Wed Nov 23 12:12:55 2011 +0100

include: Drop unneeded l modifiers from numeric constants in rpcndr.h.

---

 include/rpcndr.h |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/include/rpcndr.h b/include/rpcndr.h
index eb65192..514f1ce 100644
--- a/include/rpcndr.h
+++ b/include/rpcndr.h
@@ -40,19 +40,19 @@ extern "C" {
 /* stupid #if can't handle casts... this __stupidity
    is just a workaround for that limitation */
 
-#define __NDR_CHAR_REP_MASK  0x000fL
-#define __NDR_INT_REP_MASK   0x00f0L
-#define __NDR_FLOAT_REP_MASK 0xff00L
+#define __NDR_CHAR_REP_MASK  0x000f
+#define __NDR_INT_REP_MASK   0x00f0
+#define __NDR_FLOAT_REP_MASK 0xff00
 
-#define __NDR_IEEE_FLOAT     0x0000L
-#define __NDR_VAX_FLOAT      0x0100L
-#define __NDR_IBM_FLOAT      0x0300L
+#define __NDR_IEEE_FLOAT     0x0000
+#define __NDR_VAX_FLOAT      0x0100
+#define __NDR_IBM_FLOAT      0x0300
 
-#define __NDR_ASCII_CHAR     0x0000L
-#define __NDR_EBCDIC_CHAR    0x0001L
+#define __NDR_ASCII_CHAR     0x0000
+#define __NDR_EBCDIC_CHAR    0x0001
 
-#define __NDR_LITTLE_ENDIAN  0x0010L
-#define __NDR_BIG_ENDIAN     0x0000L
+#define __NDR_LITTLE_ENDIAN  0x0010
+#define __NDR_BIG_ENDIAN     0x0000
 
 /* Mac's are special */
 #if defined(__RPC_MAC__)




More information about the wine-cvs mailing list