run of indent-all

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/rdesktop/trunk@1679 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Henrik Andersson 2012-11-22 07:57:26 +00:00
parent 83c4ea4c16
commit 51c17488a7
4 changed files with 4 additions and 4 deletions

2
cssp.c
View File

@ -327,7 +327,7 @@ cssp_encode_tscredentials(char *username, char *password, char *domain)
#if WITH_DEBUG_CREDSSP
streamsave(out, "tscredentials.raw");
printf("Out TSCredentials %ld bytes\n", s_length(out));
printf("Out TSCredentials %ld bytes\n", s_length(out));
hexdump(out->data, s_length(out));
#endif

View File

@ -261,7 +261,7 @@ oss_set_format(RD_WAVEFORMATEX * pwfx)
if ((pwfx->wBitsPerSample == 16) && (format != AFMT_S16_LE))
return False;
if ((pwfx->nChannels == 2) != !!stereo)
if ((pwfx->nChannels == 2) != ! !stereo)
return False;
if (pwfx->nSamplesPerSec != snd_rate)

View File

@ -304,7 +304,7 @@ sun_set_format(RD_WAVEFORMATEX * pwfx)
if ((pwfx->wBitsPerSample == 16) && (format != AUDIO_ENCODING_LINEAR))
return False;
if ((pwfx->nChannels == 2) != !!stereo)
if ((pwfx->nChannels == 2) != ! !stereo)
return False;
if (pwfx->nSamplesPerSec != snd_rate)

View File

@ -316,7 +316,7 @@ seamless_process_line(const char *line, void *data)
if (*endptr)
return False;
ui_seamless_begin(!!(flags & SEAMLESSRDP_HELLO_HIDDEN));
ui_seamless_begin(! !(flags & SEAMLESSRDP_HELLO_HIDDEN));
}
else if (!strcmp("ACK", tok1))
{