gdi32: The offsets should be signed.

This commit is contained in:
Huw Davies 2011-09-09 16:19:25 +01:00 committed by Alexandre Julliard
parent b7bb3538f9
commit fcea548464
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ typedef struct
static int clip_line(const POINT *start, const POINT *end, const RECT *clip,
const bres_params *params, POINT *pt1, POINT *pt2)
{
unsigned int n, m;
int m, n;
BOOL clipped = FALSE;
DWORD start_oc, end_oc;
const int bias = params->bias;