Warning killing commit

modified   tests/polytest/polytest.cpp
   Use %ld to print LONGs, not %d

modified   tests/vmtest/vmtest.c
   Don't do pointer arithmetics on PVOID

Everything else
   Compile winetests with __ROS_LONG64__

svn path=/trunk/; revision=38873
This commit is contained in:
KJK::Hyperion 2009-01-18 06:31:44 +00:00
parent 75eeb2a7e4
commit bfc3948cfe
48 changed files with 49 additions and 4 deletions

View file

@ -794,7 +794,7 @@ Polygon ( CONST PPOINT UnsafePoints, int Count, int polyFillMode )
To = Points[CurrentPoint + 1];
}
DPRINT1("Polygon Making line from (%d,%d) to (%d,%d)\n", From.x, From.y, To.x, To.y );
DPRINT1("Polygon Making line from (%ld,%ld) to (%ld,%ld)\n", From.x, From.y, To.x, To.y );
IntEngLineTo(SurfObj,
dc.CombinedClip,
OutBrushObj,
@ -863,6 +863,6 @@ int main()
printf("\n");
}
DPRINT1("Done!\n");
(void)getch();
(void)_getch();
}
/* EOF */