Removed some dead-code.
diff --git a/dlls/commdlg/fontdlg.c b/dlls/commdlg/fontdlg.c
index 1f9980b..b6ad99c 100644
--- a/dlls/commdlg/fontdlg.c
+++ b/dlls/commdlg/fontdlg.c
@@ -1076,7 +1076,6 @@
HDC hdc;
HPEN hOrigPen;
HFONT hOrigFont;
- COLORREF rgbPrev;
LOGFONTW lf = *(lpcf->lpLogFont);
MapWindowPoints( 0, hDlg, (LPPOINT) &info.rcWindow, 2);
@@ -1104,7 +1103,7 @@
info.rcWindow.top++;
info.rcWindow.left++;
hOrigFont = SelectObject( hdc, CreateFontIndirectW( &lf ) );
- rgbPrev=SetTextColor( hdc, lpcf->rgbColors );
+ SetTextColor( hdc, lpcf->rgbColors );
DrawTextW( hdc,
sample_lang_text[CHARSET_ORDER[lpcf->lpLogFont->lfCharSet]],
diff --git a/dlls/winaspi/aspi.c b/dlls/winaspi/aspi.c
index 35c8c8a..85e7dcf 100644
--- a/dlls/winaspi/aspi.c
+++ b/dlls/winaspi/aspi.c
@@ -221,7 +221,7 @@
RegCloseKey(hkeyPort);
return ((--i) << 16) + atoiW(&wPortName[9]);
-};
+}
int SCSI_OpenDevice( int h, int c, int t, int d )
{