include: Fix the byte-order in the definition of the USER_MARSHAL_CB_SIGNATURE macro.
diff --git a/include/rpcndr.h b/include/rpcndr.h
index 2c28020..8feab23 100644
--- a/include/rpcndr.h
+++ b/include/rpcndr.h
@@ -274,8 +274,8 @@
 
 /* 'USRC' */
 #define USER_MARSHAL_CB_SIGNATURE \
-	( (DWORD)'U'         | ( (DWORD)'S' << 8 ) | \
-	( (DWORD)'R' << 16 ) | ( (DWORD)'C' << 24 ) )
+	( ( (DWORD)'U' << 24 ) | ( (DWORD)'S' << 16 ) | \
+	  ( (DWORD)'R' << 8  ) | ( (DWORD)'C'       ) )
 
 typedef enum
 {