mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
fixed difference in signedness warnings
svn path=/trunk/; revision=20371
This commit is contained in:
parent
10d768b33b
commit
57ce730b6a
2 changed files with 2 additions and 2 deletions
|
@ -7210,7 +7210,7 @@ SetupDiInstallDeviceInterfaces(
|
|||
LPWSTR InterfaceGuidString = NULL;
|
||||
LPWSTR ReferenceString = NULL;
|
||||
LPWSTR InterfaceSection = NULL;
|
||||
UINT InterfaceFlags;
|
||||
INT InterfaceFlags;
|
||||
GUID InterfaceGuid;
|
||||
BOOL Result;
|
||||
|
||||
|
|
|
@ -1524,7 +1524,7 @@ BITMAPOBJ_CopyBitmap(HBITMAP hBitmap)
|
|||
res = IntCreateBitmapIndirect(&bm);
|
||||
if(res)
|
||||
{
|
||||
char *buf;
|
||||
PBYTE buf;
|
||||
|
||||
buf = ExAllocatePoolWithTag (PagedPool, bm.bmWidthBytes * abs(bm.bmHeight), TAG_BITMAP);
|
||||
NtGdiGetBitmapBits (hBitmap, bm.bmWidthBytes * abs(bm.bmHeight), buf);
|
||||
|
|
Loading…
Reference in a new issue