gdi32: Avoid compiler warning in WineEngGetGlyphOutline().

oldstable
Gerald Pfeifer 2007-10-14 13:52:00 +02:00 committed by Alexandre Julliard
parent 1a0f1bc6ce
commit 4e60df85d8
1 changed files with 2 additions and 3 deletions

View File

@ -3837,10 +3837,9 @@ DWORD WineEngGetGlyphOutline(GdiFont *incoming_font, UINT glyph, UINT format,
mult = 16;
else if(format == GGO_GRAY8_BITMAP)
mult = 64;
else if(format == WINE_GGO_GRAY16_BITMAP)
else /* format == WINE_GGO_GRAY16_BITMAP */
return needed;
else
assert(0);
break;
}
default: