Indent fixes

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@705 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2004-06-01 08:06:02 +00:00
parent 2f85428b91
commit 030f5f0ca1
4 changed files with 13 additions and 12 deletions

View File

@ -656,7 +656,8 @@ reset_modifier_keys()
rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
!get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch) && !get_key_state(state, XK_ISO_Level3_Shift))
!get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch)
&& !get_key_state(state, XK_ISO_Level3_Shift))
rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
reset_winkey(ev_time);

8
xwin.c
View File

@ -252,8 +252,8 @@ translate8to16(uint8 * data, uint8 * out, uint8 * end)
uint16 value;
if (g_arch_match)
REPEAT(*((uint16 *) out) = g_colmap[*(data++)]; out += 2;
)
REPEAT(*((uint16 *) out) = g_colmap[*(data++)];
out += 2;)
else
if (g_xserver_be)
{
@ -309,8 +309,8 @@ translate8to32(uint8 * data, uint8 * out, uint8 * end)
uint32 value;
if (g_arch_match)
REPEAT(*((uint32 *) out) = g_colmap[*(data++)]; out += 4;
)
REPEAT(*((uint32 *) out) = g_colmap[*(data++)];
out += 4;)
else
if (g_xserver_be)
{