Indent fixes.

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@696 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2004-05-11 13:45:57 +00:00
parent 70653e3d71
commit efef8750a8

6
xwin.c
View File

@ -254,7 +254,8 @@ translate8to16(uint8 * data, uint8 * out, uint8 * end)
if (g_arch_match) 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) else
if (g_xserver_be)
{ {
while (out < end) while (out < end)
{ {
@ -310,7 +311,8 @@ translate8to32(uint8 * data, uint8 * out, uint8 * end)
if (g_arch_match) 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) else
if (g_xserver_be)
{ {
while (out < end) while (out < end)
{ {