gdi.exe16: Remove dead assignment (Clang).
This commit is contained in:
parent
007d14972c
commit
fccb44027d
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue