Indent fixes; ran indent-all with modern indent (F11)

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/rdesktop/trunk@1509 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2009-08-27 08:35:48 +00:00
parent ea46f1729d
commit 5c67800d15
3 changed files with 5 additions and 5 deletions

View File

@ -50,6 +50,7 @@ static RD_HBITMAP g_volatile_bc[3];
static int g_bmpcache_lru[3] = { NOT_SET, NOT_SET, NOT_SET };
static int g_bmpcache_mru[3] = { NOT_SET, NOT_SET, NOT_SET };
static int g_bmpcache_count[3];
/* Setup the bitmap cache lru/mru linked list */

4
disk.c
View File

@ -833,8 +833,8 @@ disk_set_information(RD_NTHANDLE handle, uint32 info_class, STREAM in, STREAM ou
in_uint32_le(in, delete_on_close);
if (delete_on_close ||
(pfinfo->
accessmask & (FILE_DELETE_ON_CLOSE | FILE_COMPLETE_IF_OPLOCKED)))
(pfinfo->accessmask &
(FILE_DELETE_ON_CLOSE | FILE_COMPLETE_IF_OPLOCKED)))
{
pfinfo->delete_on_close = True;
}

View File

@ -271,9 +271,8 @@ get_termios(SERIAL_DEVICE * pser_inf, RD_NTHANDLE serial_fd)
pser_inf->stop_bits = (ptermios->c_cflag & CSTOPB) ? STOP_BITS_2 : STOP_BITS_1;
pser_inf->parity =
(ptermios->
c_cflag & PARENB) ? ((ptermios->
c_cflag & PARODD) ? ODD_PARITY : EVEN_PARITY) : NO_PARITY;
(ptermios->c_cflag & PARENB) ? ((ptermios->c_cflag & PARODD) ? ODD_PARITY :
EVEN_PARITY) : NO_PARITY;
switch (ptermios->c_cflag & CSIZE)
{
case CS5: