Fix compiler warnings

gcc (Debian 4.9.2-10) 4.9.2

winpr/libwinpr/thread/argv.c: In function ‘CommandLineToArgvA’:
winpr/libwinpr/thread/argv.c:94:6: warning: unused variable ‘index’ [-Wunused-variable]
  int index;

winpr/libwinpr/file/test/TestFileGetStdHandle.c: In function ‘TestFileGetStdHandle’:
winpr/libwinpr/file/test/TestFileGetStdHandle.c:44:2: warning: implicit
	declaration of function ‘CloseHandle’ [-Wimplicit-function-declaration]
  CloseHandle(stdout);
    ^
libfreerdp/codec/test/TestFreeRDPRegion.c: In function ‘test_norbert2_case’:
libfreerdp/codec/test/TestFreeRDPRegion.c:697:6: warning: unused variable ‘i’ [-Wunused-variable]
  int i;

channels/cliprdr/server/cliprdr_main.c: In function ‘cliprdr_server_receive_format_list’:
channels/cliprdr/server/cliprdr_main.c:636:24: warning: unused variable ‘cliprdr’ [-Wunused-variable]
  CliprdrServerPrivate* cliprdr = (CliprdrServerPrivate*) context->handle;
                        ^
channels/cliprdr/server/cliprdr_main.c: In function ‘cliprdr_server_init’:
channels/cliprdr/server/cliprdr_main.c:1097:24: warning: unused variable ‘cliprdr’ [-Wunused-variable]
  CliprdrServerPrivate* cliprdr = (CliprdrServerPrivate*) context->handle;
This commit is contained in:
Bernhard Miklautz 2015-11-09 19:26:34 +01:00
parent 67368b2ec7
commit 0cdb4f7924
4 changed files with 2 additions and 5 deletions

View File

@ -633,7 +633,6 @@ static UINT cliprdr_server_receive_format_list(CliprdrServerContext* context, wS
WCHAR* wszFormatName; WCHAR* wszFormatName;
CLIPRDR_FORMAT* formats = NULL; CLIPRDR_FORMAT* formats = NULL;
CLIPRDR_FORMAT_LIST formatList; CLIPRDR_FORMAT_LIST formatList;
CliprdrServerPrivate* cliprdr = (CliprdrServerPrivate*) context->handle;
UINT error = CHANNEL_RC_OK; UINT error = CHANNEL_RC_OK;
dataLen = header->dataLen; dataLen = header->dataLen;
@ -1094,7 +1093,6 @@ static UINT cliprdr_server_init(CliprdrServerContext* context)
CLIPRDR_CAPABILITIES capabilities; CLIPRDR_CAPABILITIES capabilities;
CLIPRDR_MONITOR_READY monitorReady; CLIPRDR_MONITOR_READY monitorReady;
CLIPRDR_GENERAL_CAPABILITY_SET generalCapabilitySet; CLIPRDR_GENERAL_CAPABILITY_SET generalCapabilitySet;
CliprdrServerPrivate* cliprdr = (CliprdrServerPrivate*) context->handle;
UINT error; UINT error;
ZeroMemory(&capabilities, sizeof(capabilities)); ZeroMemory(&capabilities, sizeof(capabilities));

View File

@ -694,7 +694,6 @@ static int test_norbert2_case() {
int retCode = -1; int retCode = -1;
const RECTANGLE_16 *rects; const RECTANGLE_16 *rects;
int nbRects = 0; int nbRects = 0;
int i;
RECTANGLE_16 rect1 = { 464, 696, 476, 709 }; RECTANGLE_16 rect1 = { 464, 696, 476, 709 };
RECTANGLE_16 rect2 = { 0, 0, 1024, 32 }; RECTANGLE_16 rect2 = { 0, 0, 1024, 32 };

View File

@ -20,6 +20,7 @@
*/ */
#include <winpr/file.h> #include <winpr/file.h>
#include <winpr/handle.h>
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
@ -44,4 +45,4 @@ int TestFileGetStdHandle(int argc, char* argv[])
CloseHandle(stdout); CloseHandle(stdout);
return 0; return 0;
} }

View File

@ -91,7 +91,6 @@
LPSTR* CommandLineToArgvA(LPCSTR lpCmdLine, int* pNumArgs) LPSTR* CommandLineToArgvA(LPCSTR lpCmdLine, int* pNumArgs)
{ {
char* p; char* p;
int index;
int length; int length;
char* pBeg; char* pBeg;
char* pEnd; char* pEnd;