gdi.exe16: Remove dead assignment (Clang)

Frédéric Delanoy frederic.delanoy at gmail.com
Wed Jul 6 03:34:43 CDT 2011


---
 dlls/gdi.exe16/printdrv.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/gdi.exe16/printdrv.c b/dlls/gdi.exe16/printdrv.c
index 2060d9f..f00eaa1 100644
--- a/dlls/gdi.exe16/printdrv.c
+++ b/dlls/gdi.exe16/printdrv.c
@@ -115,7 +115,7 @@ INT16 WINAPI ExtractPQ16(HPQ16 hPQ)
 {
     struct hpq *queue, *prev, *current, *currentPrev;
     int key = 0, tag = -1;
-    currentPrev = prev = NULL;
+    prev = NULL;
     queue = current = hpqueue;
     if (current)
         key = current->key;
-- 
1.7.6




More information about the wine-patches mailing list