mshtml: Remove superfluous semicolons

Andrew Talbot andrew.talbot at talbotville.com
Mon Dec 22 14:22:06 CST 2008


Changelog:
    mshtml: Remove superfluous semicolons.

diff --git a/dlls/mshtml/htmlstylesheet.c b/dlls/mshtml/htmlstylesheet.c
index b074c25..adbe740 100644
--- a/dlls/mshtml/htmlstylesheet.c
+++ b/dlls/mshtml/htmlstylesheet.c
@@ -56,8 +56,8 @@ typedef struct {
     nsIDOMCSSRuleList *nslist;
 } HTMLStyleSheetRulesCollection;
 
-#define HTMLSTYLESHEET(x)     ((IHTMLStyleSheet*)                &(x)->lpHTMLStyleSheetVtbl);
-#define HTMLSTYLESHEETSCOL(x) ((IHTMLStyleSheetsCollection*)     &(x)->lpHTMLStyleSheetsCollectionVtbl);
+#define HTMLSTYLESHEET(x)     ((IHTMLStyleSheet*)                &(x)->lpHTMLStyleSheetVtbl)
+#define HTMLSTYLESHEETSCOL(x) ((IHTMLStyleSheetsCollection*)     &(x)->lpHTMLStyleSheetsCollectionVtbl)
 #define HTMLSTYLERULESCOL(x)  ((IHTMLStyleSheetRulesCollection*) &(x)->lpHTMLStyleSheetRulesCollectionVtbl)
 
 #define HTMLSTYLERULESCOL_THIS(iface) \



More information about the wine-patches mailing list