winex11.drv: Remove dead assignment (Clang).

This commit is contained in:
Frédéric Delanoy 2011-07-06 10:34:44 +02:00 committed by Alexandre Julliard
parent a3e0623641
commit 8c8df2c220
1 changed files with 1 additions and 4 deletions

View File

@ -660,10 +660,7 @@ static int LookupEntry(LFANDSIZE *plfsz)
for(i = mru; i >= 0; i = glyphsetCache[i].next) {
TRACE("%d\n", i);
if(glyphsetCache[i].count == -1) { /* reached free list so stop */
i = -1;
break;
}
if(glyphsetCache[i].count == -1) break; /* reached free list so stop */
if(!fontcmp(&glyphsetCache[i].lfsz, plfsz)) {
glyphsetCache[i].count++;