From 37d18db78bcbeb804aab3e5c4ff98a89cfa4d4b7 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Mon, 22 Dec 2008 20:22:06 +0000 Subject: [PATCH] mshtml: Remove superfluous semicolons. --- dlls/mshtml/htmlstylesheet.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlstylesheet.c b/dlls/mshtml/htmlstylesheet.c index b074c255b65..adbe740db45 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) \ -- 2.11.4.GIT