fixed gcc4 warnings

svn path=/trunk/; revision=20560
This commit is contained in:
Thomas Bluemel 2006-01-04 14:26:06 +00:00
parent 1b8dc2e713
commit 450dfac672
4 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
<module name="ddraw_demo" type="win32gui" installbase="system32" installname="ddraw_demo.exe"> <module name="ddraw_demo" type="win32gui" installbase="system32" installname="ddraw_demo.exe" allowwarnings="true">
<define name="_WIN32_IE">0x0501</define> <define name="_WIN32_IE">0x0501</define>
<define name="_WIN32_WINNT">0x0501</define> <define name="_WIN32_WINNT">0x0501</define>
<define name="__USE_W32API" /> <define name="__USE_W32API" />

View file

@ -243,7 +243,7 @@ CheckValueArgument:
default: default:
{ {
TCHAR Buffer[256]; TCHAR Buffer[256];
DWORD i; DWORD i, j;
for (i = 0 ; i < dwValueSize ; i++) for (i = 0 ; i < dwValueSize ; i++)
{ {
if (i%16 == 0) if (i%16 == 0)
@ -266,7 +266,7 @@ CheckValueArgument:
if (i && (i%16 == 15)) if (i && (i%16 == 15))
{ // if this is the last byte in line { // if this is the last byte in line
// Dump text representation // Dump text representation
for (DWORD j = i-15; j <= i; j += blnUnicodeDump?2:1)\ for (j = i-15; j <= i; j += blnUnicodeDump?2:1)\
{ {
if ((j%8 == 0)&&(j%16 != 0)) if ((j%8 == 0)&&(j%16 != 0))
{ // this is the additional space between 7th and 8th byte in current line { // this is the additional space between 7th and 8th byte in current line
@ -321,7 +321,7 @@ CheckValueArgument:
if (k && (k%16 == 15)) if (k && (k%16 == 15))
{ // if this is the last byte in line { // if this is the last byte in line
ASSERT((k-15)%16 == 0); // k-15 must point at begin of last line ASSERT((k-15)%16 == 0); // k-15 must point at begin of last line
for (DWORD j = k-15; j < i; j += j += blnUnicodeDump?2:1) for (j = k-15; j < i; j += blnUnicodeDump?2:1)
{ {
if (blnUnicodeDump&&(j+1 >= i)) if (blnUnicodeDump&&(j+1 >= i))
{ // ok, buffer size is odd number, so we don't display last byte. { // ok, buffer size is odd number, so we don't display last byte.

View file

@ -545,7 +545,7 @@ WndProc ( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
PrintTextXY("CBN_EDITCHANGE notification",NOTIFYX,NOTIFYY,27,srect); PrintTextXY("CBN_EDITCHANGE notification",NOTIFYX,NOTIFYY,27,srect);
break; break;
case CBN_ERRSPACE: case (WORD)CBN_ERRSPACE:
ScrollWindow (hwnd, 0, SCROLLAMOUNT, &srect, &srect); ScrollWindow (hwnd, 0, SCROLLAMOUNT, &srect, &srect);
PrintTextXY("CBN_ERRSPACE notification",NOTIFYX,NOTIFYY,25,srect); PrintTextXY("CBN_ERRSPACE notification",NOTIFYX,NOTIFYY,25,srect);
break; break;

View file

@ -804,7 +804,7 @@ void test8(void)
LONG dwError; LONG dwError;
TOKEN_PRIVILEGES NewPrivileges; TOKEN_PRIVILEGES NewPrivileges;
HANDLE Token,hKey; HANDLE Token,hKey;
LUID Luid; LUID Luid = {0};
BOOLEAN bRes; BOOLEAN bRes;
Status=NtOpenProcessToken(GetCurrentProcess() Status=NtOpenProcessToken(GetCurrentProcess()
,TOKEN_ADJUST_PRIVILEGES,&Token); ,TOKEN_ADJUST_PRIVILEGES,&Token);