Indented on Fedora 11

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/rdesktop/trunk@1527 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2010-01-07 18:52:26 +00:00
parent d00373436a
commit cf715c225c

7
rdp.c
View File

@ -1058,8 +1058,8 @@ process_colour_pointer_common(STREAM s, int bpp)
{
uint16 width, height, cache_idx, masklen, datalen;
sint16 x, y;
uint8 * mask;
uint8 * data;
uint8 *mask;
uint8 *data;
RD_HCURSOR cursor;
in_uint16_le(s, cache_idx);
@ -1073,8 +1073,7 @@ process_colour_pointer_common(STREAM s, int bpp)
in_uint8p(s, mask, masklen);
if ((width != 32) || (height != 32))
{
warning("process_colour_pointer_common: "
"width %d height %d\n", width, height);
warning("process_colour_pointer_common: " "width %d height %d\n", width, height);
}
/* sometimes x or y is out of bounds */
x = MAX(x, 0);