Indent fixes

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@716 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2004-06-17 09:42:58 +00:00
parent bcefe938d1
commit d80c5d4d7b
3 changed files with 5 additions and 4 deletions

View File

@ -161,7 +161,7 @@ channel_process(STREAM s, uint16 mcs_channel)
{
if (length > in->size)
{
in->data = (uint8*)xrealloc(in->data, length);
in->data = (uint8 *) xrealloc(in->data, length);
in->size = length;
}
in->p = in->data;

3
mppc.c
View File

@ -279,7 +279,8 @@ mppc_expand(uint8 * data, uint32 clen, uint8 ctype, uint32 * roff, uint32 * rlen
match_bits = match_len;
match_len =
((walker >> (32 - match_bits)) & (~(-1 << match_bits))) | (1 << match_bits);
((walker >> (32 - match_bits)) & (~(-1 << match_bits))) | (1 <<
match_bits);
walker <<= match_bits;
walker_len -= match_bits;
}

4
rdp.c
View File

@ -659,7 +659,7 @@ rdp_process_bitmap_caps(STREAM s)
if (g_width != width || g_height != height)
{
warning("screen size changed from %dx%d to %dx%d\n", g_width, g_height,
width, height);
width, height);
g_width = width;
g_height = height;
ui_resize_window();
@ -1088,7 +1088,7 @@ rdp_loop(BOOL * deactivated, uint32 * ext_disc_reason)
BOOL cont = True;
STREAM s;
while (cont)
while (cont)
{
s = rdp_recv(&type);
if (s == NULL)