From 38e9364b65866d278150efebc945a92726a10dd8 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Wed, 23 Apr 2008 16:47:33 +0200 Subject: [PATCH] mshtml: Fixed typo. --- dlls/mshtml/script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/script.c b/dlls/mshtml/script.c index 3424d904fbf..d924e57a074 100644 --- a/dlls/mshtml/script.c +++ b/dlls/mshtml/script.c @@ -710,7 +710,7 @@ static ScriptHost *get_script_host(HTMLDocument *doc, const GUID *guid) { ScriptHost *iter; - if(IsEqualGUID(&CLSID_JScript, &guid)) { + if(IsEqualGUID(&CLSID_JScript, guid)) { FIXME("Ignoring JScript\n"); return NULL; }