gdi.exe16: Remove dead assignment (Clang).

This commit is contained in:
Frédéric Delanoy 2011-07-06 10:34:43 +02:00 committed by Alexandre Julliard
parent 007d14972c
commit fccb44027d
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ INT16 WINAPI ExtractPQ16(HPQ16 hPQ)
{ {
struct hpq *queue, *prev, *current, *currentPrev; struct hpq *queue, *prev, *current, *currentPrev;
int key = 0, tag = -1; int key = 0, tag = -1;
currentPrev = prev = NULL; prev = NULL;
queue = current = hpqueue; queue = current = hpqueue;
if (current) if (current)
key = current->key; key = current->key;