Fixed doulbe semicolon in C files.

This commit is contained in:
Armin Novak 2019-05-08 12:58:01 +02:00
parent 48a12ae131
commit d7ca2db62e
7 changed files with 7 additions and 7 deletions

View File

@ -1024,7 +1024,7 @@ static jboolean JNICALL jni_freerdp_send_clipboard_data(
const jbyte* data = jdata != NULL ? (*env)->GetStringUTFChars(env, jdata,
NULL) : NULL;
int data_length = data ? strlen(data) : 0;
jboolean ret = JNI_FALSE;;
jboolean ret = JNI_FALSE;
event = (ANDROID_EVENT*) android_event_clipboard_new((void*)data, data_length);
if (!event)

View File

@ -823,7 +823,7 @@ void wf_size_scrollbars(wfContext* wfc, UINT32 client_width,
{
SCROLLINFO si;
BOOL horiz = wfc->xScrollVisible;
BOOL vert = wfc->yScrollVisible;;
BOOL vert = wfc->yScrollVisible;
if (!horiz && client_width < wfc->context.settings->DesktopWidth)
{

View File

@ -66,7 +66,7 @@ static UINT xf_OutputUpdate(xfContext* xfc, xfGfxSurface* surface)
const UINT32 sheight = rects[x].bottom - nYSrc;
const UINT32 nXDst = surfaceX + nXSrc * sx;
const UINT32 nYDst = surfaceY + nYSrc * sy;
const UINT32 dwidth = swidth * sx;;
const UINT32 dwidth = swidth * sx;
const UINT32 dheight = sheight * sy;
if (surface->stage)

View File

@ -147,7 +147,7 @@ rfx_dwt_2d_decode_block_vert_NEON(INT16* l, INT16* h, INT16* dst, int subband_wi
// dst[2n] = l[n] - ((h[n-1] + h[n] + 1) >> 1);
int16x8_t l_n = vld1q_s16(l_ptr);
int16x8_t h_n = vld1q_s16(h_ptr);
int16x8_t tmp_n = vaddq_s16(h_n, vdupq_n_s16(1));;
int16x8_t tmp_n = vaddq_s16(h_n, vdupq_n_s16(1));
if (n == 0)
tmp_n = vaddq_s16(tmp_n, h_n);

View File

@ -1494,5 +1494,5 @@ BOOL rdp_send_server_status_info(rdpContext* context, UINT32 status)
Stream_Write_UINT32(s, status);
return rdp_send_data_pdu(rdp, s, DATA_PDU_TYPE_STATUS_INFO, rdp->mcs->userId);;
return rdp_send_data_pdu(rdp, s, DATA_PDU_TYPE_STATUS_INFO, rdp->mcs->userId);
}

View File

@ -91,7 +91,7 @@ static void mf_peer_rdpsnd_activated(RdpsndServerContext* context)
recorderState.dataFormat.mSampleRate = agreedFormat->nSamplesPerSec;
recorderState.dataFormat.mFormatFlags = kAudioFormatFlagIsSignedInteger |
kAudioFormatFlagsNativeEndian | kAudioFormatFlagIsPacked;;
kAudioFormatFlagsNativeEndian | kAudioFormatFlagIsPacked;
recorderState.dataFormat.mBytesPerPacket = 4;
recorderState.dataFormat.mFramesPerPacket = 1;
recorderState.dataFormat.mBytesPerFrame = 4;

View File

@ -173,7 +173,7 @@ wLogAppender* WLog_JournaldAppender_New(wLog* log)
{
wLogJournaldAppender* appender;
DWORD nSize;
LPCSTR name = "WLOG_JOURNALD_ID";;
LPCSTR name = "WLOG_JOURNALD_ID";
appender = (wLogJournaldAppender*) calloc(1, sizeof(wLogJournaldAppender));
if (!appender)