From ad020e145e88cede1345ae7dba64ef68b207ee33 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Sat, 4 Aug 2007 01:02:04 +0200 Subject: [PATCH] mshtml: Remove const in front of REFIID as that is a macro that already starts with const. --- dlls/mshtml/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/main.c b/dlls/mshtml/main.c index 9a2a4f0084f..6ed2549b38c 100644 --- a/dlls/mshtml/main.c +++ b/dlls/mshtml/main.c @@ -54,7 +54,7 @@ static HINSTANCE shdoclc = NULL; static ITypeLib *typelib; static ITypeInfo *typeinfos[LAST_tid]; -static const REFIID tid_ids[] = { +static REFIID tid_ids[] = { &IID_IHTMLWindow2 };