diff --git a/include/X11/extensions/XKBstr.h b/include/X11/extensions/XKBstr.h index eaefae8..b5256a8 100644 --- a/include/X11/extensions/XKBstr.h +++ b/include/X11/extensions/XKBstr.h @@ -221,14 +221,14 @@ typedef struct _XkbRedirectKeyAction { unsigned char vmods1; } XkbRedirectKeyAction; -#define XkbSARedirectVMods(a) ((((unsigned int)(a)->vmods1)<<8)|\ - ((unsigned int)(a)->vmods0)) -#define XkbSARedirectSetVMods(a,m) (((a)->vmods1=(((m)>>8)&0xff)),\ - ((a)->vmods0=((m)&0xff))) -#define XkbSARedirectVModsMask(a) ((((unsigned int)(a)->vmods_mask1)<<8)|\ - ((unsigned int)(a)->vmods_mask0)) -#define XkbSARedirectSetVModsMask(a,m) (((a)->vmods_mask1=(((m)>>8)&0xff)),\ - ((a)->vmods_mask0=((m)&0xff))) +#define XkbSARedirectVMods(a) ((((unsigned int)(a)->vmods0)<<8)|\ + ((unsigned int)(a)->vmods1)) +#define XkbSARedirectSetVMods(a,m) (((a)->vmods0=(((m)>>8)&0xff)),\ + ((a)->vmods1=((m)&0xff))) +#define XkbSARedirectVModsMask(a) ((((unsigned int)(a)->vmods_mask0)<<8)|\ + ((unsigned int)(a)->vmods_mask1)) +#define XkbSARedirectSetVModsMask(a,m) (((a)->vmods_mask0=(((m)>>8)&0xff)),\ + ((a)->vmods_mask1=((m)&0xff))) typedef struct _XkbDeviceBtnAction { unsigned char type;