Module: wine Branch: master Commit: 49a1c60c37bddf39c438f1ab9a5a4fa544e525df URL: http://source.winehq.org/git/wine.git/?a=commit;h=49a1c60c37bddf39c438f1ab9a...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Tue Mar 10 10:55:52 2015 +0300
scrrun: Fix copy-paste issue in trace message.
---
dlls/scrrun/scrrun.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/scrrun/scrrun.c b/dlls/scrrun/scrrun.c index 3afcd50..5201f1f 100644 --- a/dlls/scrrun/scrrun.c +++ b/dlls/scrrun/scrrun.c @@ -215,11 +215,11 @@ HRESULT WINAPI DllUnregisterServer(void) HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv) { if(IsEqualGUID(&CLSID_FileSystemObject, rclsid)) { - TRACE("(CLSID_WshShell %s %p)\n", debugstr_guid(riid), ppv); + TRACE("(CLSID_FileSystemObject %s %p)\n", debugstr_guid(riid), ppv); return IClassFactory_QueryInterface(&FileSystemFactory, riid, ppv); } else if(IsEqualGUID(&CLSID_Dictionary, rclsid)) { - TRACE("(CLSID_WshShell %s %p)\n", debugstr_guid(riid), ppv); + TRACE("(CLSID_Dictionary %s %p)\n", debugstr_guid(riid), ppv); return IClassFactory_QueryInterface(&DictionaryFactory, riid, ppv); }